我没有得到优化的正则表达式,它根据第一个空格出现将我拆分为字符串:
var str="72 tocirah sneab";
我需要得到:
[
"72",
"tocirah sneab",
]
我没有得到优化的正则表达式,它根据第一个空格出现将我拆分为字符串:
var str="72 tocirah sneab";
我需要得到:
[
"72",
"tocirah sneab",
]
如果您只关心空格字符(而不是制表符或其他空白字符)并且只关心第一个空格之前的所有内容以及第一个空格之后的所有内容,那么您可以在没有这样的正则表达式的情况下执行此操作:
str.substring(0, str.indexOf(' ')); // "72"
str.substring(str.indexOf(' ') + 1); // "tocirah sneab"
请注意,如果根本没有空格,那么第一行将返回一个空字符串,第二行将返回整个字符串。确保这是您在那种情况下想要的行为(或者这种情况不会出现)。
Javascript 不支持lookbehinds,所以split
是不可能的。match
作品:
str.match(/^(\S+)\s(.*)/).slice(1)
另一个技巧:
str.replace(/\s+/, '\x01').split('\x01')
怎么样:
[str.replace(/\s.*/, ''), str.replace(/\S+\s/, '')]
那么为何不
reverse = function (s) { return s.split('').reverse().join('') }
reverse(str).split(/\s(?=\S+$)/).reverse().map(reverse)
或许
re = /^\S+\s|.*/g;
[].concat.call(re.exec(str), re.exec(str))
2019 年更新:从 ES2018 开始,支持lookbehinds:
str = "72 tocirah sneab"
s = str.split(/(?<=^\S+)\s/)
console.log(s)
在 ES6 中,您还可以
let [first, ...second] = str.split(" ")
second = second.join(" ")
我知道游戏迟到了,但似乎有一种非常简单的方法可以做到这一点:
const str = "72 tocirah sneab";
const arr = str.split(/ (.*)/);
console.log(arr);
这将离开arr[0]
with"72"
和arr[1]
with "tocirah sneab"
。请注意, arr[2] 将为空,但您可以忽略它。
以供参考:
var arr = []; //new storage
str = str.split(' '); //split by spaces
arr.push(str.shift()); //add the number
arr.push(str.join(' ')); //and the rest of the string
//arr is now:
["72","tocirah sneab"];
但我仍然认为有一种更快的方法。
georg 的解决方案很好,但如果字符串不包含任何空格,则会中断。如果您的字符串有可能不包含空格,则使用 .split 并像这样捕获组会更安全:
str_1 = str.split(/\s(.+)/)[0]; //everything before the first space
str_2 = str.split(/\s(.+)/)[1]; //everything after the first space
我不确定为什么所有其他答案都如此复杂,当您可以在一行中完成所有操作时,还可以处理空间不足的问题。
例如,让我们获取名称的第一个和“其余”部分:
const [first, rest] = 'John Von Doe'.split(/\s+(.*)/);
console.log({ first, rest });
// As array
const components = 'Surma'.split(/\s+(.*)/);
console.log(components);
只需将字符串拆分为一个数组并将您需要的部分粘合在一起。这种方法非常灵活,它适用于许多情况并且很容易推理。另外,您只需要一个函数调用。
arr = str.split(' '); // ["72", "tocirah", "sneab"]
strA = arr[0]; // "72"
strB = arr[1] + ' ' + arr[2]; // "tocirah sneab"
或者,如果您想直接从字符串中挑选您需要的内容,您可以执行以下操作:
strA = str.split(' ')[0]; // "72";
strB = str.slice(strA.length + 1); // "tocirah sneab"
或者像这样:
strA = str.split(' ')[0]; // "72";
strB = str.split(' ').splice(1).join(' '); // "tocirah sneab"
但是我建议第一个例子。
工作演示:jsbin
另一种简单的方法:
str = 'text1 text2 text3';
strFirstWord = str.split(' ')[0];
strOtherWords = str.replace(strFirstWord + ' ', '');
结果:
strFirstWord = 'text1';
strOtherWords = 'text2 text3';
我习惯于.split(" ")[0]
在空格之前获取所有字符。
productName.split(" ")[0]
每当我需要从类列表或类名或 id 的一部分中获取类时,我总是使用 split() 然后使用数组索引专门获取它,或者在我的情况下最常见的是 pop() 来获取最后一个元素或 shift() 获得第一个。
此示例获取 div 的类“gallery_148 ui-sortable”并返回图库 id 148。
var galleryClass = $(this).parent().prop("class"); // = gallery_148 ui-sortable
var galleryID = galleryClass.split(" ").shift(); // = gallery_148
galleryID = galleryID.split("_").pop(); // = 148
//or
galleryID = galleryID.substring(8); // = 148 also, but less versatile
我确信它可以压缩成更少的行,但为了便于阅读,我将其扩展。
我需要一个稍微不同的结果。
我想要第一个词,以及它之后的内容——即使它是空白的。
str.substr(0, text.indexOf(' ') == -1 ? text.length : text.indexOf(' '));
str.substr(text.indexOf(' ') == -1 ? text.length : text.indexOf(' ') + 1);
所以如果输入是oneword
你得到oneword
和''
。
如果输入是one word and some more
你得到one
和word and some more
。
上面的大多数答案都是按空格而不是空格搜索的。@georg 的回答很好。我有一个稍微不同的版本。
s.trim().split(/\s(.*)/).splice(0,2)
我不确定如何判断哪个最有效,因为我的正则表达式要简单得多,但它有额外的空间。
(@georg 的参考是s.split(/(?<=^\S+)\s/)
)
该问题没有指定如何处理无空格或所有空格、前导或尾随空格或空字符串,在这些情况下,我们的结果略有不同。
我正在为需要使用下一个单词的解析器编写此代码,因此我更喜欢我的定义,尽管 @georg 可能更适合其他用例。
input. mine @georg
'aaa bbb' ['aaa','bbb'] ['aaa','bbb']
'aaa bbb ccc' ['aaa','bbb ccc'] ['aaa','bbb ccc']
'aaa ' [ 'aaa' ] [ 'aaa', '' ]
' ' [ '' ] [ ' ' ]
'' [''] ['']
' aaa' ['aaa'] [' aaa']
以下函数将始终将句子分成 2 个元素。第一个元素将仅包含第一个单词,第二个元素将包含所有其他单词(或者它将是一个空字符串)。
var arr1 = split_on_first_word("72 tocirah sneab"); // Result: ["72", "tocirah sneab"]
var arr2 = split_on_first_word(" 72 tocirah sneab "); // Result: ["72", "tocirah sneab"]
var arr3 = split_on_first_word("72"); // Result: ["72", ""]
var arr4 = split_on_first_word(""); // Result: ["", ""]
function split_on_first_word(str)
{
str = str.trim(); // Clean string by removing beginning and ending spaces.
var arr = [];
var pos = str.indexOf(' '); // Find position of first space
if ( pos === -1 ) {
// No space found
arr.push(str); // First word (or empty)
arr.push(''); // Empty (no next words)
} else {
// Split on first space
arr.push(str.substr(0,pos)); // First word
arr.push(str.substr(pos+1).trim()); // Next words
}
return arr;
}