string to number conversion with mixed values

조회 수: 4 (최근 30일)
lafnath p
lafnath p 2016년 10월 25일
댓글: Walter Roberson 2016년 10월 26일
i have two strings
'index_N=10'
and
'index_M=5'
in a file.
how can i get only numbers N =10 and M=5. from these strings

답변 (2개)

Massimo Zanetti
Massimo Zanetti 2016년 10월 25일
str1 = 'index_N=10'
str2 = 'index_M=5'
sub1 = str1(7:end)
sub2 = str(7:end)
  댓글 수: 2
lafnath p
lafnath p 2016년 10월 25일
IT GIVES 10 , 5 AS STRINGS.
but i want those values as integers
Walter Roberson
Walter Roberson 2016년 10월 25일
str2double() or sscanf()

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


Guillaume
Guillaume 2016년 10월 25일
It looks like you're asking two things:
  • how to create variables named from the content of a string,
  • how to get the index string and number from your input string.
The first part is an extremely bad idea, so I won't show you how to do it because it always lead to bad practice, and complicated, buggy and unmaintainable code. If you want to store these names, store them in a cell array, table, or containers.Map.
To extract name and number from your input:
tokens = regexp(inputstring, 'index_(.)=(\d+)', 'tokens', 'once');
indexname = tokens{1}
indexvalue = str2double(tokens{2})
%optionally store them in a map created with
%map = containers.Map;
map(indexname) = map(indexvalue)
%or store them in a table created with:
%t = table({}, [], 'VariableNames', {'IndexName', 'IndexValue'})
t = [t; table(indexname, indexvalue, 'VariableNames', {'IndexName', 'IndexValue'})]

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by