Filter löschen
Filter löschen

filter string in the string

14 Ansichten (letzte 30 Tage)
Liger
Liger am 21 Aug. 2019
Kommentiert: Liger am 28 Aug. 2019
Hello,
I am quietly new with matlab script.
I have a string as example.
str = 'this matlab is a good software, it is a version 9.4 which is equal to 2018a'
objective, I want to filter the number from that string ( so it is "9.4").
Note that I cannot see that number. All i want is to scan that number and show in my workspace.
so the scribt should read the text and identify the number of the version and show in my workspace.
I appreciate your help.
Regards,
LN
  2 Kommentare
Ted Shultz
Ted Shultz am 21 Aug. 2019
Do you not want to also get '2018'? What rule would the code use to exclude this?
Adam
Adam am 21 Aug. 2019
doc regexp
should help do this. It takes a bit of getting used to parameterising regular expressions though. There are likely simpler ways depending how robust you want it to be.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Stephan
Stephan am 21 Aug. 2019
Bearbeitet: Stephan am 21 Aug. 2019
str = 'this matlab is a good software, it is a version 9.4 which is equal to 2018a'
str = char(str);
idx = find((uint8(str)>=48 & uint8(str)<=57) | uint8(str)==46 | uint8(str)==32);
res = split(string(str(idx))," ");
res(res=="")=[]
The second line makes sure that it also works with:
str = "this matlab is a good software, it is a version 9.4 which is equal to 2018a"
  3 Kommentare
Stephan
Stephan am 21 Aug. 2019
thank you for the hint!
Liger
Liger am 28 Aug. 2019
Thank you, i found the anwser so useful

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (2)

Stephen23
Stephen23 am 21 Aug. 2019
Bearbeitet: Stephen23 am 21 Aug. 2019
>> str = 'this matlab is a good software, it is a version 9.4 which is equal to 2018a';
>> out = regexp(str,'\d+\.\d+','match','once')
out = 9.4

Guillaume
Guillaume am 21 Aug. 2019
Bearbeitet: Guillaume am 21 Aug. 2019
Using a regular expression:
numbers = regexp(youstring, '\<\d*\.?\d+\>', 'once')
which will extract any number not attached to text. Allowed formats for number is 123, 123.45, .123

Kategorien

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

Community Treasure Hunt

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

Start Hunting!

Translated by