1

我有一个动态数组,我想排除字符串的第一部分,但我不知道第一部分之后会有多少对象,我想将它们全部包含在一个新字符串中。

string = "text.'''hi''','''who''' '''are''' '''you'''. I'm ken and you're barbie"

x = string.split("'''")[1]

我可以做些什么来将它们都包括在内吗?像 [1..?]

我有 JQuery 但不认为这是必要的,对吧?

4

2 回答 2

3

shift

从数组中删除第一个元素并返回该元素。此方法更改数组的长度。

代码:

x = theString.split("'''");
var firstElement = x.shift();
// Now x is the shifted array.
x[0];
于 2012-05-11T10:30:17.677 回答
2

你似乎想要:

x = string.split("'''").slice(1);

这将返回从索引 1 开始的数组的所有元素。

于 2012-05-11T10:30:05.037 回答