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...

link|improve this question

59% accept rate
feedback

9 Answers

up vote 12 down vote accepted

This isn't a pretty approach, but works with decent efficiency:

var string = "1|Ceci n'est pas une pipe: | Oui";
var components = string.split('|');
alert([components.shift(), components.join('|')]​);​​​​​

Here's a quick demo of it

link|improve this answer
+1 That's pretty clever. (you might want to paste the working code back here). – karim79 May 21 '10 at 0:11
@karim - Clarify on the working code bit? Confusing me! – Nick Craver May 21 '10 at 0:13
This is actually better than the regex, I think. Selected as correct, thanks! – Stavros Korokithakis May 21 '10 at 0:14
1  
To clarify, he's splitting into N parts then popping the first one onto a list and joining the rest onto the same list. – Stavros Korokithakis May 21 '10 at 0:15
1  
@Nick - discrepancy between the code above and the code in jsfiddle. There's an extra ); in the alert above. – karim79 May 21 '10 at 0:16
show 1 more comment
feedback

You'd want to use String.indexOf('|') to get the index of the first occurrence of '|'.

var i = s.indexOf('|');
var splits = [s.slice(0,i), s.slice(i+1)];
link|improve this answer
This is also a good solution. – Stavros Korokithakis May 21 '10 at 0:23
Not as "fun" as Nick's, but probably more efficient. Also note the +1 should actually be the length of the separator string, if more than one character. – chaiguy Feb 2 at 16:23
feedback

You can use:

var splits = str.match(/([^|]*)\|(.*)/);
splits.shift();

The regex splits the string into two matching groups (parenthesized), the text preceding the first | and the text after. Then, we shift the result to get rid of the whole string match (splits[0]).

link|improve this answer
Tested this code and works. 1+ for using Regex. – Riley May 21 '10 at 0:03
properly, that should probably anchor at beginning. however javascript regexen seem to be greedy. – sreservoir May 21 '10 at 0:05
Ah, thanks for that, that should work! – Stavros Korokithakis May 21 '10 at 0:06
feedback

Try this:

function splitOnce(input, splitBy) {
    var fullSplit = input.split(splitBy);
    var retVal = [];
    retVal.push( fullSplit.shift() );
    retVal.push( fullSplit.join( splitBy ) );
    return retVal;
}

var whatever = splitOnce("1|Ceci n'est pas une pipe: | Oui", '|');
link|improve this answer
feedback

one liner and imo, simpler:

var str = 'I | am super | cool | yea!';
str.split('|').slice(1).join('|');

This returns " am super | cool | yea!"

link|improve this answer
feedback

use the javascript regular expression functionality and take the first captured expression.

the RE would probably look like /^([^|]*)\|/.

actually, you only need /[^|]*/ if you validated that the string is formatted in such a way, due to javascript regex greediness.

link|improve this answer
feedback

Just as evil as most of the answers so far:

var splits = str.split('|');
splits.splice(1, splits.length - 1, splits.slice(1).join('|'));
link|improve this answer
feedback

An alternate, short approach, besides the goods ones elsewhere, is to use replace()'s limit to your advantage.

var str = "1|Ceci n'est pas une pipe: | Oui";
str.replace("|", "aUniquePhraseToSaySplitMe").split("aUniquePhraseToSaySplitMe");

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).

link|improve this answer
that only works if the 'unique' phrase is uninputable. if reading from a text file, this is impossible. if reading from browser, any unprintable control character if probably fine. tab works wonders, too. in any case, "aUniquePhraseToSaySplitMe" is almost definitely possibly part of the input, and is thus dangerous. – sreservoir May 21 '10 at 0:11
You are correct, of course. My example is just an example with an eye toward explaining what is being done concisely. I'll incorporate your point into the answer itself. Thanks! – D_N May 21 '10 at 0:17
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.

var splitOnce = function(str, delim) {
    var components = str.split(delim);
    var result = [components.shift()];
    if(components.length) {
        result.push(components.join(delim));
    }
    return result;
};

splitOnce("a b c d", " "); // ["a", "b c d"]
splitOnce("a", " "); // ["a"]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.