フィルターのクリア

How to find specific text in a string?

5 ビュー (過去 30 日間)
Mark Golberg
Mark Golberg 2022 年 4 月 4 日
回答済み: Cris LaPierre 2022 年 4 月 4 日
Hello,
I have the following text:
"abs(3).def(5).hhh(11)"
Is there an easy way for search for all the locations with "(" - number - ")".
I mean, all the places where there is a number between parenthesis.
I've try to use regexp but it was too complicate for me to understand how exactly it should be written.
Thanks.
  1 件のコメント
Fangjun Jiang
Fangjun Jiang 2022 年 4 月 4 日
regular expression makes you relax :)

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

採用された回答

Cris LaPierre
Cris LaPierre 2022 年 4 月 4 日
I'm sure there is a regexp way to do this, but I find it easier to use pattern with its supporting functions. Here's how I would do it.
txt = "abs(3).def(5).hhh(11)";
pat = lookBehindBoundary("(") + digitsPattern + lookAheadBoundary(")");
extract(txt,pat)
ans = 3×1 string array
"3" "5" "11"

その他の回答 (1 件)

Fangjun Jiang
Fangjun Jiang 2022 年 4 月 4 日
a="abs(3).def(5).hhh(11)";
regexp(a,'(\d+)')

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by