I'm looking to split a string at the first ':', to prevent issues if the second part of the string contains a ':'. I've been looking at Regexes, but am still having some issues, can somebody give me a hand?
Thanks.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
You can use the overload of split that takes a limit parameter:
|
|||
|
|
|
You can use 2 argument
|
||||
|
|
|
Notice, that split uses regexps. And indexOf + substr can be much faster than split. |
|||
|
|