Steparate a sting using strtok function

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 日

0 投票

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 :)

サインインしてコメントする。

カテゴリ

質問済み:

2013 年 11 月 4 日

回答済み:

2013 年 11 月 4 日

Community Treasure Hunt

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

Start Hunting!

Translated by