6

如何拆分这样的字符串

"please     help me "

这样我得到一个这样的数组:

["please     ","help ","me "]

换句话说,我得到一个保留空间(或空间)的数组

谢谢

4

2 回答 2

12

就像是 :

var str   = "please     help me ";
var split = str.split(/(\S+\s+)/).filter(function(n) {return n});

小提琴

于 2013-07-18T15:02:58.147 回答
0

如果不使用函数,这很棘手;

var temp = "", outputArray = [], text = "please     help me ".split("");
for(i=0; i < text.length; i++) {
    console.log(typeof text[i+1])
    if(text[i] === " " && (text[i+1] !== " " || typeof text[i+1] === "undefined")) {
        outputArray.push(temp+=text[i]);
        temp="";
    } else {
        temp+=text[i];
    }

}
console.log(outputArray);

我不认为一个简单的正则表达式可以解决这个问题。您可以使用原型来像使用本机代码一样使用它...

String.prototype.splitPreserve = function(seperator) {
    var temp = "", 
        outputArray = [], 
        text = this.split("");
    for(i=0; i < text.length; i++) {
        console.log(typeof text[i+1])
        if(text[i] === seperator && (text[i+1] !== seperator || typeof text[i+1] === "undefined")) {
            outputArray.push(temp+=text[i]);
            temp="";
        } else {
            temp+=text[i];
        }

    }
    return outputArray;
}

console.log("please     help me ".splitPreserve(" "));
于 2013-07-18T15:28:56.490 回答