strrep for unordered string

1 回表示 (過去 30 日間)
Reuben Addison
Reuben Addison 2020 年 2 月 5 日
コメント済み: Stephen23 2020 年 2 月 5 日
I have a string 'Z06IL202RNP302' I want to take out 'Z', 'IL' and 'RNP', how do I use strrep to achieve that. Do I do it multiple times.

採用された回答

Bhaskar R
Bhaskar R 2020 年 2 月 5 日
What about reguler expression?
result = regexprep('Z06IL202RNP302', '(Z|IL|RNP)', '');
  1 件のコメント
Stephen23
Stephen23 2020 年 2 月 5 日

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

タグ

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by