vote up 1 vote down star

I'm looking to implement the Shunting-yard Algorithm, but I need some help figuring out what the best way to split up a string into its tokens is.

If you notice, the first step of the algorithm is "read a token." This isn't exactly a non-trivial thing to do. Tokens can consist of numbers, operators and parens.

If you are doing something like:

(5+1)

A simple string.split() will give me an array of the tokens { "(", "5", "+", "1", ")" }.

However, it becomes more complicated if you have numbers with multiple digits such as:

((2048*124) + 42)

Now a naive string.split() won't do the trick. The multi-digit numbers are a problem.

I know I could write a lexer, but is there a way to do this without writing a full-blown lexer?

I'm implementing this in JavaScript and I'd like to avoid having to go down the lexer-path if possible. I'll be using the "*", "+", "-" and "/" operators, along with integers.

flag

65% accept rate
Anything that correctly converts a character stream to a token stream is a lexer. – Steve S Oct 19 at 20:02

2 Answers

vote up 5 vote down check

How about regular expressions? You could easily write regex to split it the way you want, and the JS string.split method accepts regex as the parameter too.

For example... (modify to include all chars you need etc)

/([0-9]+|[*+-\/()])/
link|flag
1  
+1 It breaks for nested parentheses like '((42 + 7) * 4)' but that can be fixed by adding parentheses to the second half of the expression: /([0-9]+|[*+-\/()])/ – brianpeiris Oct 19 at 19:32
He is still using the algorithm specified on the wiki page. The pseudo-code says "Read Token". – Simucal Oct 19 at 19:40
@Simucal, @KingNestor I'm confused now, isn't this the correct answer? – brianpeiris Oct 19 at 19:45
Some people, when confronted with a problem, think "I know, I'll use regular expressions." Now they have two problems. codinghorror.com/blog/archives/… – Oscar Reyes Oct 19 at 19:46
@brianpeiris, Oh, I'm not saying this isn't the answer. I was just commenting on the first line of Jani's answer, "If you don't want to write the algorithm specified on the wiki." The algorithm doesn't specify how to read in a token, it simply says "read token". So, in that way KingNestor is following the algorithm using this answer. – Simucal Oct 19 at 19:48
vote up 1 vote down

You can use a global match as described at http://mikesamuel.blogspot.com/2009/05/efficient-parsing-in-javascript.html

Basically, you create one regex that describes a token

/[0-9]+|false|true|\(|\)/g

and put the 'g' on the end so it matches globally, and then you call its match method

var tokens = myRegex.match(inputString);

and get back an array.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.