필터 지우기
필터 지우기

how to split a string by whitespace

조회 수: 3 (최근 30일)
ben zekri raouf
ben zekri raouf 2015년 2월 9일
댓글: John D'Errico 2015년 2월 9일
hi,how to split a string to array splitted by whitespace,also how to convert a date to string ( matlab R2008a)

채택된 답변

Image Analyst
Image Analyst 2015년 2월 9일
s = 'hi,how to split a string to array splitted by whitespace,also how to convert a date to string ( matlab R2008a)'
theWords = allwords(s)
Result:
theWords =
Columns 1 through 14
'hi' 'how' 'to' 'split' 'a' 'string' 'to' 'array' 'splitted' 'by' 'whitespace' 'also' 'how' 'to'
Columns 15 through 22
'convert' 'a' 'date' 'to' 'string' '(' 'matlab' 'R2008a)'
You can specify delimiters other than spaces if you wish.
  댓글 수: 2
ben zekri raouf
ben zekri raouf 2015년 2월 9일
thnx so much ,but unfortunately the function ''allwords'' does not exist in matlab 2008a,i tried it but it didn't work :( ??? Undefined function or method 'allwords' for input arguments of type 'char'.
John D'Errico
John D'Errico 2015년 2월 9일
Sure it does. You just need to download it. (It is free too.) Image Analyst gave you the link to find it.
Once you download the file, add the unzipped directory to your search path, and it will now work.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by