How to find text structure within string array?

1 回表示 (過去 30 日間)
Mark Golberg
Mark Golberg 2022 年 8 月 15 日
コメント済み: Mark Golberg 2022 年 8 月 15 日
Hello,
please see below an example of file names I have:
"moose_0_-1_6_Coordinates-8580_138864_ 30-01-21_17-48-22_0.xml"
I've made in bold the required text (which is the date of file creation).
File names can vary a little a bit, but the bold structure would always exist.
Can I search somehow for a specific template/structure within my string?
Something like: ##-##-##_##-##-## (when # <--> digit).
Thank You !

採用された回答

Stephen23
Stephen23 2022 年 8 月 15 日
編集済み: Stephen23 2022 年 8 月 15 日
str = "moose_0_-1_6_Coordinates-8580_138864_ 30-01-21_17-48-22_0.xml";
rgx = '\d+-\d+-\d+_\d+-\d+-\d+';
out = regexp(str,rgx,'match','once')
out = "30-01-21_17-48-22"
  1 件のコメント
Mark Golberg
Mark Golberg 2022 年 8 月 15 日
Perfect. Exactly what I was looking for.

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

その他の回答 (1 件)

Image Analyst
Image Analyst 2022 年 8 月 15 日

カテゴリ

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

製品


リリース

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by