Regular expressions with regexp.

3 次查看(过去 30 天)
I want to separate 8 number together like 20070101, <Year> 2007, <Month>01, <Day>01, how can I do?

采纳的回答

Stephen23
Stephen23 2019-9-28
>> str = '20070101';
>> rgx = '(?<year>\d{4})(?<month>\d{2})(?<day>\d{2})';
>> out = regexp(str,rgx,'names')
out =
year: '2007'
month: '01'
day: '01'

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by