File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Beginning Java and the fly likes Picking characters from a string Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply locked New topic
Author

Picking characters from a string

Doug Wolfinger
Greenhorn

Joined: Jul 27, 2002
Posts: 18
Hello,
I am trying to pass a string that represents a postfix expression. The method that accepts it should take each number and place it on the stack. When it encounters an operator, it should pop the top two numbers and evaluate them with the operator.
This is the expression. "abc+-"
a=7, b=3, c=12 So it applies "+" to c and b, then it subtracts (c + b) from a. I have made the string into a string array in my program, but I think the idea is to pass the expression as a regular string as I have it above. Thanks!

If you would like to use that program, you'll need this one, too.
Doug Wolfinger
Greenhorn

Joined: Jul 27, 2002
Posts: 18
My bad. I've copied this to the Intermediate forum.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Picking characters from a string
 
Similar Threads
Input error in math equation
A continuation of my previous post, if I may...
Selecting characters from a string
Converting Infix to Postfix Expressions
Trouble evaluating postfix Expression