Regular Expressions using regexp

2 Ansichten (letzte 30 Tage)
Eduard Mazur
Eduard Mazur am 10 Mai 2019
Bearbeitet: Stephen23 am 10 Mai 2019
Hello, I have some problem with understanding regexp expression
I have some names: ["T_24_UZK500.txt"; "FWD_T80_UZK500.txt"; "T80_UZK700.txt"]
how can I get numbers after "T" and after "UZK"?
I need a rule that will describe only the numbers after the designated patterns.
  2 Kommentare
Adam Danz
Adam Danz am 10 Mai 2019
Are "T" and "UZK" the only possible letters in the names?
Eduard Mazur
Eduard Mazur am 10 Mai 2019
Bearbeitet: Eduard Mazur am 10 Mai 2019
It's variable symbols which are defined earlier.
I mean, I have filenames (string) and patterns (variable inside this names). With this information I need extract numerical vallues after variables..

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Stephen23
Stephen23 am 10 Mai 2019
Bearbeitet: Stephen23 am 10 Mai 2019
Matching only integer numbers after 'UZK' or 'T_' (it is unclear in your question if the underscore is permitted or not, but the regular expression below is easy to adapt):
>> S = {'T_24_UZK500.txt';'FWD_T80_UZK500.txt';'T80_UZK700.txt'};
>> C = regexp(S,'(?<=(T_?|UZK))\d+','match');
>> C{:}
ans =
'24' '500'
ans =
'80' '500'
ans =
'80' '700'
Or simply by matching any integer numbers:
>> C = regexp(S,'\d+','match');
>> C{:}
ans =
'24' '500'
ans =
'80' '500'
ans =
'80' '700'
  4 Kommentare
Eduard Mazur
Eduard Mazur am 10 Mai 2019
Thanks for your helping!
This solution fit for me.
madhan ravi
madhan ravi am 10 Mai 2019
Using exp as a variable name is not a good idea it would thwart the inbuilt function exp()

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by