str2num sending figures to printer, is there an alternative?
1 次查看(过去 30 天)
显示 更早的评论
While parsing a long text file using the STR2NUM command (to extract only numerical values from the file), matlab sent many empty FIGs to the printer for printing. It even used all the papers in the printer! Funny morning. I am aware of the option: Evaluation='restricted', yet it was unexpected.
What happened was that in the text file there was a line of text starting with the word PRINT.
example:
x = str2num('print "Termalization done." append info.txt')
Is there an alternative for simple parsing of text files?
回答(1 个)
Hassaan
2024-3-26
编辑:Hassaan
2024-3-26
% Example text line that might be read from your file
textLine = 'The result is 42 and not 43.5 or any other number like -1.23e4';
% Regular expression to match numbers (including decimals and exponentials)
% This pattern matches:
% - Optional sign (+/-)
% - A digit sequence
% - Optional decimal part
% - Optional exponential part (e.g., e+10, e-10)
pattern = '[-+]?\d+\.?\d*(e[-+]?\d+)?';
% Extract matching strings (numbers in this case)
numbersAsStrings = regexp(textLine, pattern, 'match');
% Convert extracted strings to numbers
numbers = str2double(numbersAsStrings);
% Display the extracted numbers
format longG; % This sets the format to long with no trailing zeros
disp(numbers);
-----------------------------------------------------------------------------------------------------------------------------------------------------
If you find the solution helpful and it resolves your issue, it would be greatly appreciated if you could accept the answer. Also, leaving an upvote and a comment are also wonderful ways to provide feedback.
It's important to note that the advice and code are based on limited information and meant for educational purposes. Users should verify and adapt the code to their specific needs, ensuring compatibility and adherence to ethical standards.
Professional Interests
- Technical Services and Consulting
- Embedded Systems | Firmware Developement | Simulations
- Electrical and Electronics Engineering
Feel free to contact me.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!