Create multiple sub arrays in one line!

11 ビュー (過去 30 日間)
Francisco Dias
Francisco Dias 2019 年 11 月 27 日
コメント済み: Star Strider 2019 年 11 月 27 日
Hi everyone, I have the string bellow as input to a function
'(44) (hello) (good) ()'
the function looks for indices positions of left and right parenthesis...
open = strfind(text, '(');
close = strfind(text, ')');
after that I want to isolate everything inside the parenthesis...
I was hoping there was a fast way of doing this something like:
output = text(open:close);
but it doesn't seem to work does anyone has a clue if this is possible?!

採用された回答

Star Strider
Star Strider 2019 年 11 月 27 日
Try this:
str = '(44) (hello) (good) ()';
out = regexp(str, '(?<=\()\w*(?=\))', 'match')
producing:
out =
1×3 cell array
{'44'} {'hello'} {'good'}
See the documentation on regexp (and its friends) for details.
Make appripriate changes to get the result you wannt.
  4 件のコメント
Francisco Dias
Francisco Dias 2019 年 11 月 27 日
Woow this is great! thank you ;)
Star Strider
Star Strider 2019 年 11 月 27 日
As always, my pleasure!

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

その他の回答 (1 件)

Turlough Hughes
Turlough Hughes 2019 年 11 月 27 日
編集済み: Turlough Hughes 2019 年 11 月 27 日
This is one way to go about it:
a=strsplit(text(text~=' '),{'(',')'})
output=sprintf('%s',a{:})
  1 件のコメント
Turlough Hughes
Turlough Hughes 2019 年 11 月 27 日
編集済み: Turlough Hughes 2019 年 11 月 27 日
Actually, just realising you could also write:
output=text(text~=' ' | text~='(' | text~=')')

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

カテゴリ

Help Center および File ExchangeEntering Commands についてさらに検索

タグ

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by