What regex pattern would need to pass to the java.lang.String.split() method to split a string with all whitespace characters (' ', '\t', '\n', etc.) as delimiters?
|
Something in the lines of
this groups all whitespaces as a delimiter... so if i have the string "Hello[space][tab]World", this should yield the strings "Hello" and "World" and omit the empty space between the space and the tab. As VonC pointed out, the backslash should be escaped, because Java would first try to escape the string to a special character, and send that to be parsed. What you want, is the literal "\s", which means, you need to pass "\\s". It can get a bit confusing. The |
|||||||||||||||
|
|
In most regex dialects there are a set of convenient character summaries you can use for this kind of thing - these are good ones to remember: \w - Matches any word character. \W - Matches any nonword character. \s - Matches any white-space character. \S - Matches anything but white-space characters. \d - Matches any digit. \D - Matches anything except digits. A search for "Regex Cheatsheets" should reward you with a whole lot of useful summaries. |
|||
|
|
|
To get this working, I had to do the following:
|
|||||||||
|
|
I was not able to get Henrik Paul's answer to work correctly as is, as it seems that javascript does not interpret "\\s+" as a regular expression. The answer did at least lead me on the right track to something that worked, so thank you! This may depend on the browser you are using ("\\s+" does not work in Opera 11.64 as I write this), but the way that I would imagine is going to work in all cases is to explicitly create a RegExp object and initialise it with the "\s+" string. The following works fine for me:
Here is a useful link on regular expressions for noobs like myself. Note that I was not able to get Javascript to recognise any regular expression in Opera unless I explicitly defined it as such as shown in the last example. |
|||
|
|
|
Since it is a regular expression, and i'm assuming u would also not want non-alphanumeric chars like commas, dots, etc that could be surrounded by blanks (e.g. "one , two" should give [one][two]), it should be: myString.split(/[\s\W]+/) |
|||
|
|
