How can I split a string only once, i.e. make 1|Ceci n'est pas une pipe: | Oui parse to: ["1", "Ceci n'est pas une pipe: | Oui"]?
The limit in split doesn't seem to help...
|
How can I split a string only once, i.e. make The limit in split doesn't seem to help...
| ||||
|
feedback
|
|
This isn't a pretty approach, but works with decent efficiency:
| |||||||||||||||
feedback
|
|
You'd want to use
| |||||
feedback
|
|
You can use:
The regex splits the string into two matching groups (parenthesized), the text preceding the first | and the text after. Then, we | |||||||
feedback
|
|
Try this:
| |||
|
feedback
|
|
one liner and imo, simpler:
This returns " am super | cool | yea!" | |||
|
feedback
|
|
use the javascript regular expression functionality and take the first captured expression. the RE would probably look like actually, you only need | |||
|
feedback
|
|
Just as evil as most of the answers so far:
| |||
|
feedback
|
|
An alternate, short approach, besides the goods ones elsewhere, is to use
As @sreservoir points out in the comments, the unique phrase must be truly unique--it cannot be in the source you're running this split over, or you'll get the string split into more pieces than you want. An unprintable character, as he says, may do if you're running this against user input (i.e., typed in a browser). | |||||
feedback
|
|
If the string doesn't contain the delimiter @NickCraver's solution will still return an array of two elements, the second being an empty string. I prefer the behavior to match that of split. That is, if the input string does not contain the delimiter return just an array with a single element.
| |||
|
feedback
|