フィルターのクリア

Regular Expression Problem , Please Help

2 ビュー (過去 30 日間)
Yowh
Yowh 2012 年 9 月 27 日
I have no idea how to do this ..
str = '[a,b,c,d,e,[f1,f2],g],[u,v,w,[x1,x2],[y1,y2],z]';
Using this code:
regexp(str,'\[.*?(\[.*?\],[.*?\]).*?\]','tokens');
i got an answer like this:
ans =[f1,f2],g],[u,v,w,[x1,x2]
but what I want is like this:
ans = [x1,x2],[y1,y2]
  3 件のコメント
Yowh
Yowh 2012 年 9 月 27 日
the string is dynamic ..
Matt Fig
Matt Fig 2012 年 9 月 28 日
That doesn't really answer the question. I showed you how to find the answer you requested, then I asked you to give the general form, including the rule for finding what you want. "The string is dynamic" tells me nothing really. Good luck.

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

回答 (1 件)

Walter Roberson
Walter Roberson 2012 年 9 月 27 日
Remember, .* will match everything including [ or ] characters. You need to exclude those characters from the search if you are looking for the ] matching a [ .
  1 件のコメント
Yowh
Yowh 2012 年 9 月 28 日
I have tried this but it doesn't work:
ans = regexp(str,'\[.*?\[[^\]]*?\].*?\]','match')

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by