I need to split my String by spaces. For this I tried:
str = \"Hello I\'m your String\"; String[] splited = str.split(\" \");
But it doesn\
Not only white space, but my solution also solves the invisible characters as well.
str = "Hello I'm your String"; String[] splited = str.split("\p{Z}");