I am in the process of writing string split functionality and realized that split()
method can take regular expression. I should split it by whitespace.
I had found following regular expression construct can do that.
\p{Space}
How do I incorporate this in my String split() method.