javascript: разделение строки (но сохранение пробелов) [закрыто]

Как я могу разделить строку так

"please     help me "

чтобы я получил такой массив:

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

другими словами,я получаю массив, который сохраняет пространство (или пространства)

спасибо

2 ответов


что-то типа :

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

скрипка


это сложно без использования функции;

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

Я не думаю, что простое регулярное выражение может помочь в этом. вы можете использовать prototype, чтобы использовать его как собственный код...

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(" "));