这是我的代码:
var string1= "Hello how are =you";
我需要一个字符串" ="即"你"只从整个字符串。假设字符串总是有一个" ="字符,我希望在jquery中的一个新变量中该字符后的所有字符串。
请帮帮我。
答案 0 :(得分:9)
使用此方法: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);
Proof for the Speed ,与使用.split()
的其他答案进行比较
答案 2 :(得分:4)
答案 3 :(得分:1)
在javascript中使用.split()
var string1= "Hello how are =you";
console.log(string1.split("=")[1]); // returns "you"