如何在jquery中的特定字符之后拆分字符串

时间:2014-06-11 06:59:25

标签: javascript

这是我的代码:

var string1= "Hello how are =you";

我需要一个字符串" ="即"你"只从整个字符串。假设字符串总是有一个" ="字符,我希望在jquery中的一个新变量中该字符后的所有字符串。

请帮帮我。

4 个答案:

答案 0 :(得分:9)

Demo Fiddle

使用此方法:jQuery split()

var string1= "Hello how are =you";
string1 = string1.split('=')[1];

Split为您提供两个输出:

  • [0] ="您好"

  • [1] ="您"

答案 1 :(得分:4)

尝试在此上下文中使用String.prototype.substring()

var string1= "Hello how are =you"; 
var result = string1.substring(string1.indexOf('=') + 1);

DEMO

执行时

Proof for the Speed ,与使用.split()的其他答案进行比较

答案 2 :(得分:4)

使用Split方法将字符串拆分为数组

<强> demo

var string1= "Hello how are =you";

alert(string1.split("=")[1]);

答案 3 :(得分:1)

在javascript中使用.split()

var string1= "Hello how are =you";

console.log(string1.split("=")[1]); // returns "you"

Demo