How do I split a string with multiple separators in JavaScript? I'm trying to split on both commas and spaces but, AFAIK, js's split function only supports one separator.
|
Pass in a regexp as the parameter:
Edited to add: You can get the last element by selecting the length of the array minus 1:
... and if the pattern doesn't match:
|
|||||||||||
|
|
You can pass a regex into Javascript's split operator. For example:
Or, if you want to allow multiple separators together to act as one only:
(You have to use the non-capturing (?:) parens because otherwise it gets spliced back into the result. Or you can be smart like Aaron and use a character class.) (Examples tested in Safari + FF) |
|||||
|
|
For those of you who want more customization in their splitting function, I wrote a recursive algorithm that splits a given string with a list of characters to split on. I wrote this before I saw the above post... I hope it helps some frustrated programmer...
Example above returns: |
|||
|
|
|
Perhaps you should do some sort of string replace to turn one separator into the other separator so you then only have one separator to deal with in your split. |
|||
|
|