Steparate a sting using strtok function

1 次查看(过去 30 天)
Hi I'm trying to separate a string (a-b-c-d) into three parts or a-b c d. I would like to use strtok function ( http://www.mathworks.se/help/matlab/ref/strtok.html ) to solve this problem.
example = 'a-b-c-d';
[token, remain] = strtok(example,remain); %This doesn't work :(
I would like my end result to be like this:
'a-b' 'c' 'd'
Thx for your help :)

回答(2 个)

Sean de Wolski
Sean de Wolski 2013-11-4
If you're on R2013a or newer (I believe), use strsplit:
example = 'a-b-c-d';
pieces = strsplit(example,'-')
And for more info
doc strsplit
If you're on an older release, either upgrade :) or use regexp with the 'split' option:
pieces = regexp(example,'-','split')
  1 个评论
Lily
Lily 2013-11-4
编辑:Lily 2013-11-4
thx, but do you know how to do this with strtok function? I really want to know how to implement it :)

请先登录,再进行评论。


Image Analyst
Image Analyst 2013-11-4

类别

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