フィルターのクリア

How to convert strings to a matrix

1 回表示 (過去 30 日間)
Samira
Samira 2012 年 11 月 21 日
I'm trying to convert strings to a matrix E.g Hello world would be [hello, world]
I have a .m file, and I'm able to read my strings but I don't know how to convert them. Can someone help me.

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2012 年 11 月 21 日
This code takes in account more then one blanck space
s='Hello world'
s1=regexp(s,' ','split');
out=s1(~cellfun(@isempty ,s1))

その他の回答 (3 件)

Image Analyst
Image Analyst 2012 年 11 月 21 日
They already are arrays, as I'm sure you probably just found out:
s = 'Hello World'
firstWord = s(1:5) % Extract elements of the array

Thomas
Thomas 2012 年 11 月 21 日
You could also try
in='Hello World'
splitstring = textscan(in,'%s');
out=splitstring{:}'

Jan
Jan 2012 年 11 月 21 日
Note that matrices of type char are padded by spaces. The string 'Hello world' contains a space in the middle. Does this disappear in ['Hello'; 'world']? And if so, how do you want to control this explicitly?
Str = 'This is a sentencte with word separated by spaces';
CStr = regexp(Str, ' ', 'split');
% >> CStr = {'This'; 'is'; 'a'; ...}
CharMatrix = char(CStr);
% >> CharMatrix =
['This '; ...
'is '; ...
'a '; ...
'sentencse'; ...
Usually working with cell strings is more efficient.

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by