Parsing text without eval

조회 수: 5 (최근 30일)
Nieves Lopez
Nieves Lopez 2023년 3월 21일
댓글: Nieves Lopez 2023년 3월 21일
Hello,
I have some strings with values that I would like to parse. The easiest way is to use the eval function. However, I can not use it since the code is going to be compiled. Any idea on how to do this without having to parse each of the characters?
As an example, one of the string could be like this:
>> text = '{[1 2], [3 4] ''someText'' {5, [6, 7]}}'
text =
{[1 2], [3 4] 'someText' {5, [6, 7]}}
>> eval(text)
ans =
1×4 cell array
[1×2 double] [1×2 double] 'someText' {1×2 cell}
Thank you in advance!
  댓글 수: 2
Rik
Rik 2023년 3월 21일
Your requirements seem to conflict. You want to evaluate arbitrary code, but you don't want to use the function that evaluates arbitrary code.
Even if you use the recently introduced option to restrict what str2num does (to make it safer than eval) it will fail on more complicated things like you posted.
text = '{[1 2], [3 4] ''someText'' {5, [6, 7]}}'
text = '{[1 2], [3 4] 'someText' {5, [6, 7]}}'
X = str2num(text,Evaluation="restricted")
X = []
I suspect you will have to write you own parser.
Nieves Lopez
Nieves Lopez 2023년 3월 21일
Not so arbitrary code, only with numbers, strings, cells. No function calls. I was just wondering if I'm missing any function that can help me.

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

답변 (2개)

Adam Danz
Adam Danz 2023년 3월 21일
You could write the string to an m-file and then run the m-file, though this has the same flaws/risks as eval.
This demo creates a file temp.m, writes the string text to the file, runs the file, and then deletes the temporary file.
text = '{[1 2], [3 4] ''someText'' {5, [6, 7]}}'
tempFile = 'temp.m';
fid = fopen(tempFile,'w');
fidCleanup = onCleanup(@()fclose(fid));
fprintf(fid,'%s',text);
clear fidCleanup
run(tempFile)
delete(tempFile)
Result
ans =
1×4 cell array
{[1 2]} {[3 4]} {'someText'} {1×2 cell}
  댓글 수: 4
Nieves Lopez
Nieves Lopez 2023년 3월 21일
Thank you again for your response. In the code, when Matlab runs tempFile it only shows the filename by the command window (as the content of any other variable). Anyway, when generating code in C with codegen, the compiler would look for a file named temp.m and would not find it.
Adam Danz
Adam Danz 2023년 3월 21일
Yeah, this wouldn't work outside of MATLAB. I missed that you were compiling your code.

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


Image Analyst
Image Analyst 2023년 3월 21일

카테고리

Help CenterFile Exchange에서 Entering Commands에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by