How can I split a word to parts?
3 ビュー (過去 30 日間)
古いコメントを表示
Hi all, Well I want to split a word into parts for example I have sentence a='Hello World', and I want to b='llo', How can I do such thing?
4 件のコメント
Stephen23
2015 年 1 月 20 日
編集済み: Stephen23
2015 年 1 月 20 日
Where do you want to split the words: at space characters, after the first n characters, the n final characters, after any doubled characters, two digits before any vowel character, or one of a million other rules that could explain your example output string?
Your description is inadequate.
採用された回答
Ilham Hardy
2015 年 1 月 20 日
thres = 3; %three last character of first word
a = 'Hello World';
b = strtok(a);
b = b(end-(thres-1):end);
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!