turn a sentence into matrix of words

조회 수: 9 (최근 30일)
Kamyar Mazarei
Kamyar Mazarei 2021년 5월 6일
편집: DGM 2021년 5월 6일
hi i have A=1xn characters sentence i want to create matrix B=1xn size
which B hast words in a matrix set
thank you
edit: i think its called cell and not matrix
im not sure im new
  댓글 수: 1
KSSV
KSSV 2021년 5월 6일
Can you show us an example?

댓글을 달려면 로그인하십시오.

답변 (2개)

KSSV
KSSV 2021년 5월 6일
str = 'I Love MATLAB' ;
iwant = strsplit(str)
iwant = 1×3 cell array
{'I'} {'Love'} {'MATLAB'}

DGM
DGM 2021년 5월 6일
편집: DGM 2021년 5월 6일
Depends whether you want to do this with strings or character arrays:
sentence = "this is a string, not a character array";
words = split(sentence,' ') % this is an 8x1 array of strings
gives
words =
8×1 string array
"this"
"is"
"a"
"string,"
"not"
"a"
"character"
"array"
Alternatively
sentence = 'this is a character array';
words = split(sentence,' ') % this is an 5x1 cell array of chars
gives
words =
5×1 cell array
{'this' }
{'is' }
{'a' }
{'character'}
{'array' }
split() is relatively new (R2016b), but you should also be able to use strsplit() back to R2013a

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by