Split a string with "no delimiters"

조회 수: 9 (최근 30일)
Dwight
Dwight 2013년 6월 10일
i am trying to spit a string, please help
I have a file name "yellow08car.data". I am trying to parse out the "car" from the string, but i'm unable. I have used this code to parse out the words into chunks
z = 'yellow08car.data'
[m] = regexp(z,'\w*','match')
m =
'yellow08car' 'data'
so, m{1,1} is yellow08car
I just want the "car". The length of the word after the number (car, boat, truck,vehicle) changes but the location remains the same, after a number and before a period.
so how can i parse a string within these delimiters,
Thanks for any reply

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 6월 10일
편집: Azzi Abdelmalek 2013년 6월 10일
a='yellow08car'
b=regexp(a,'\d*','split')
out=b{2}
%or
a='yellow08car.data'
b=regexp(a,'[\d.]','split')
out=b{end-1}
  댓글 수: 1
Dwight
Dwight 2013년 6월 10일
thanks for the edit. the code works great and its very simple.
Really appreciate it!!!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by