Hi Guys I need help. I need to get user input of a postfix expression and then evaluate the expression. But, I am having trouble in storing the postfix expression in a variable and then to read it by one character at a time.

3 views (last 30 days)
for example, the user inputs a postfix expression, a = 123*+ I don't know how to split this expression into individual characters, like b = 1 2 3 * + Pls help!

Accepted Answer

John Chilleri
John Chilleri on 7 Feb 2017
Hello,
If I was to solve this problem and I had,
a = '123*+';
I would parse the data as follows (perhaps think of a better method than using a cell, because it's definitely not required here):
data = cell(length(a),1);
for i = 1:length(a)
if (sum(a(i) == '0123456789') == 1)
% We know a(i) is a number so
data{i} = str2num(a(i));
else
data{i} = a(i);
end
end
At this point, you have a variable named data with each element containing a character or number (if it's a number), which will be useful when you start doing operations.
Furthermore, you can do simple tests on the operation characters, such as:
if (data{i} == '+')
% perform addition
elseif (data{i} == '*')
% perform multiplication
end
If you have any questions please ask! Also, in case you aren't familiar with cells, it's essentially an array that can hold 'anything' in each element, and you can access elements with curly brackets:
data{1} = % first element of data
Hope this helps!

More Answers (0)

Community Treasure Hunt

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

Start Hunting!