フィルターのクリア

How to omit the type line in a regexp result

2 ビュー (過去 30 日間)
Yode
Yode 2017 年 7 月 8 日
回答済み: Walter Roberson 2017 年 7 月 8 日
This is my Matlab command for match those string.
As we see,there is a type mark line between * ans=* and my result line,which will take up my extra line.How to omit it?

採用された回答

Walter Roberson
Walter Roberson 2017 年 7 月 8 日
Some possible ways:
  1. regexp('dcda4adcqq', '(.{2,}).?(??@fliplr($1))', 'match', 'once');
  2. regexp('dcda4adcqq', '(.{2,}).?(??@fliplr($1))', 'match'); disp(ans);
  3. result = regexp('dcda4adcqq', '(.{2,}).?(??@fliplr($1))', 'match'); result{1}
  4. celldisp(regexp('dcda4adcqq', '(.{2,}).?(??@fliplr($1))', 'match'))

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange结构体 についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!