If you only care about the space character (and not tabs or other
whitespace characters) and only care about everything before the first
space and everything after the first space, you can do it without a
regular expression like this:
var str = "Hello India Jai Hind";
Note that if there is no space at all, then the first line will
return an empty string and the second line will return the entire
string. Be sure that is the behavior that you want in that situation
(or that that situation will not arise). |
"Learning gives Creativity,Creativity leads to Thinking, Thinking provides Knowledge, Knowledge makes you Great"
Showing posts with label javascript. Show all posts
Showing posts with label javascript. Show all posts
Wednesday, 14 October 2015
Split string on the first white space occurence
Subscribe to:
Posts (Atom)