How to extract values from a string.

조회 수: 16 (최근 30일)
Mario Verheijen Verheijen
Mario Verheijen Verheijen 2019년 5월 24일
편집: madhan ravi 2019년 5월 24일
So I have a string in the following format:
filename = "Delft_2_220_20_4344-5088.csv" ;
And I want to extract the numbers from it, what is a good way to do this?
So the result is something like this:
a=2; b=220; c=20;d=[4344 5088];

채택된 답변

Stephen23
Stephen23 2019년 5월 24일
편집: Stephen23 2019년 5월 24일
>> S = 'Delft_2_220_20_4344-5088.csv';
>> V = str2double(regexp(S,'\d+','match'))
V =
2 220 20 4344 5088
Using indexing to allocate those values to whatever other variables you want.
  댓글 수: 2
madhan ravi
madhan ravi 2019년 5월 24일
편집: madhan ravi 2019년 5월 24일
+1 Stephen, also if the string contains decimals then
regexp(s,'\d+[\.]?\d*','match')
Mario Verheijen Verheijen
Mario Verheijen Verheijen 2019년 5월 24일
Thanks Stephen, works perfectly!

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

추가 답변 (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