Here is an example of what I'm trying to do which should direct me to the right track
I have a txt file like:
2*3
4-4
4+2
8*1
For each line I need to separate numbers and identify the type of action (e.g. multiplication in the 1st line) so I could create the following output:
6
0
6
8
Should I use a delimiter to separate them (not quite sure how to do that, since the delimiter might be +,-,* and /)?
Or use a for loop? (I'd like to avoid this one for sure...)

2*3+3or will you always have just a single operation? – philipvr Nov 28 '11 at 18:43