str2num sending figures to printer, is there an alternative?
1 view (last 30 days)
Show older comments
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?
2 Comments
Answers (1)
Hassaan
on 26 Mar 2024
Edited: Hassaan
on 26 Mar 2024
% 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 Comments
See Also
Categories
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!