How to split a string with any whitespace chars as delimiters

JavaStringWhitespaceSplit

Java Problem Overview


What regex pattern would need I to pass to java.lang.String.split() to split a String into an Array of substrings using all whitespace characters (' ', '\t', '\n', etc.) as delimiters?

Java Solutions


Solution 1 - Java

Something in the lines of

myString.split("\\s+");

This groups all white spaces as a delimiter.

So if I have the string:

"Hello[space character][tab character]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 \\s is equivalent to [ \\t\\n\\x0B\\f\\r].

Solution 2 - Java

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.

Solution 3 - Java

To get this working in Javascript, I had to do the following:

myString.split(/\s+/g)

Solution 4 - Java

"\\s+" should do the trick

Solution 5 - Java

Also you may have a UniCode non-breaking space xA0...

String[] elements = s.split("[\\s\\xA0]+"); //include uniCode non-breaking

Solution 6 - Java

String string = "Ram is going to school";
String[] arrayOfString = string.split("\\s+");

Solution 7 - Java

Apache Commons Lang has a method to split a string with whitespace characters as delimiters:

StringUtils.split("abc def")

http://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/StringUtils.html#split(java.lang.String)

This might be easier to use than a regex pattern.

Solution 8 - Java

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]+/)

Solution 9 - Java

All you need is to split using the one of the special character of Java Ragex Engine,

and that is- WhiteSpace Character

  • \d Represents a digit: [0-9]
  • \D Represents a non-digit: [^0-9]
  • \s Represents a whitespace character including [ \t\n\x0B\f\r]
  • \S Represents a non-whitespace character as [^\s]
  • \v Represents a vertical whitespace character as [\n\x0B\f\r\x85\u2028\u2029]
  • \V Represents a non-vertical whitespace character as [^\v]
  • \w Represents a word character as [a-zA-Z_0-9]
  • \W Represents a non-word character as [^\w]

Here, the key point to remember is that the small leter character \s represents all types of white spaces including a single space [ ] , tab characters [ ] or anything similar.

So, if you'll try will something like this-

String theString = "Java<a space><a tab>Programming"
String []allParts = theString.split("\\s+");

You will get the desired output.


Some Very Useful Links:


Hope, this might help you the best!!!

Solution 10 - Java

you can split a string by line break by using the following statement :

 String textStr[] = yourString.split("\\r?\\n");

you can split a string by Whitespace by using the following statement :

String textStr[] = yourString.split("\\s+");

Solution 11 - Java

String str = "Hello   World";
String res[] = str.split("\\s+");

Solution 12 - Java

To split a string with any Unicode whitespace, you need to use

s.split("(?U)\\s+")
         ^^^^

The (?U) inline embedded flag option is the equivalent of Pattern.UNICODE_CHARACTER_CLASS that enables \s shorthand character class to match any characters from the whitespace Unicode category.

If you want to split with whitespace and keep the whitespaces in the resulting array, use

s.split("(?U)(?<=\\s)(?=\\S)|(?<=\\S)(?=\\s)")

See the regex demo. See Java demo:

String s = "Hello\t World\u00A0»";
System.out.println(Arrays.toString(s.split("(?U)\\s+"))); // => [Hello, World, »]
System.out.println(Arrays.toString(s.split("(?U)(?<=\\s)(?=\\S)|(?<=\\S)(?=\\s)")));
// => [Hello, 	 , World,  , »]

Solution 13 - Java

Study this code.. good luck

	import java.util.*;
class Demo{
	public static void main(String args[]){
		Scanner input = new Scanner(System.in);
		System.out.print("Input String : ");
		String s1 = input.nextLine();	
		String[] tokens = s1.split("[\\s\\xA0]+");		
		System.out.println(tokens.length);		
		for(String s : tokens){
			System.out.println(s);
			
		} 
	}
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionmcjabberzView Question on Stackoverflow
Solution 1 - JavaHenrik PaulView Answer on Stackoverflow
Solution 2 - JavaglenatronView Answer on Stackoverflow
Solution 3 - JavaMike ManardView Answer on Stackoverflow
Solution 4 - JavaVonCView Answer on Stackoverflow
Solution 5 - Javajake_astubView Answer on Stackoverflow
Solution 6 - JavaArrowView Answer on Stackoverflow
Solution 7 - JavaFelix SchefferView Answer on Stackoverflow
Solution 8 - JavaRishabhView Answer on Stackoverflow
Solution 9 - JavaSKLView Answer on Stackoverflow
Solution 10 - JavaRajeshVijayakumarView Answer on Stackoverflow
Solution 11 - JavaOlivia LiaoView Answer on Stackoverflow
Solution 12 - JavaWiktor StribiżewView Answer on Stackoverflow
Solution 13 - JavaRisith RavisaraView Answer on Stackoverflow