-1

但不是空字符串?

// loop through space separated "tokens" in a string
// will loop through "" - needs update
$P.eachString = function (str, func, con) {
    var regexp = /^|\s+/;
    if (regexp.test(str)) {
        // ... stuff
    }
};

上面的代码将匹配 "" 空字符串。我想匹配

情况1

some_string

案例2

some_string1 some_string2

案例3

some_string1 some_string2 some_string_3

等等

4

1 回答 1

0

只需使用String.split并迭代返回的array

通过将字符串拆分为子字符串,将 String 对象拆分为字符串数组。

如果separator省略,则数组包含一个由整个字符串组成的元素。

于 2013-11-05T16:48:23.640 回答