filter string in the string

조회 수: 21 (최근 30일)
Liger
Liger 2019년 8월 21일
댓글: Liger 2019년 8월 28일
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
Ted Shultz
Ted Shultz 2019년 8월 21일
Do you not want to also get '2018'? What rule would the code use to exclude this?
Adam
Adam 2019년 8월 21일
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.

댓글을 달려면 로그인하십시오.

채택된 답변

Stephan
Stephan 2019년 8월 21일
편집: Stephan 2019년 8월 21일
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
Stephan
Stephan 2019년 8월 21일
thank you for the hint!
Liger
Liger 2019년 8월 28일
Thank you, i found the anwser so useful

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Stephen23
Stephen23 2019년 8월 21일
편집: Stephen23 2019년 8월 21일
>> 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 2019년 8월 21일
편집: Guillaume 2019년 8월 21일
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

카테고리

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