JavaScript - 拆分,在给定数字后选择全部

时间:2012-05-11 10:27:12

标签: javascript string include split

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

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

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

我能做些什么来把它们全部包括在内吗?比如[1 ..?]

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

2 个答案:

答案 0 :(得分:3)

shift

  

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

<强>代码:

x = theString.split("'''");
var firstElement = x.shift();
// Now x is the shifted array.
x[0];

答案 1 :(得分:2)

你似乎想要:

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

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