Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need a regexp to split a string by commas and/or spaces, but ignore hyphenated words -- what's the best way to do this?

so, for example -- I'd like this ...

"foo bar, zap-foo, baz".split(/[\s]+/)

to return

["foo", "bar", "zap-foo", "baz"]

but when I do that it includes the commas like this ...

["foo", "bar,", "zap-foo,", "baz"]
share|improve this question

3 Answers

up vote 8 down vote accepted

"foo bar, zap-foo, baz".split(/[\s,]+/)

share|improve this answer
["foo", "bar", "zap-foo", "baz"] is the output but can we NOT split ["foo bar"] as ["foo" and "bar"] – carbonr Jan 25 at 18:32

You can specify a character class which says to split on things that are not hyphens or word characters:

"foo bar, zap-foo, baz".split(/[^\w-]+/)

Or you can split only on whitespace and commas using a character class such as the one Ocson has provided.

share|improve this answer

Or if you want to be REALLY explicit about the separators:

"foo bar, zap-foo, baz".split(/ |, |,/)

=> ["foo", "bar", "zap-foo", "baz"]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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