删除不需要的字符串

时间:2015-05-24 19:38:27

标签: javascript

如何删除字符串中的固定字符串?

例如:

aaaaaaaaaaaa@localhost
bbb@localhost
ggggggg@localhost

我想删除 @localhost 。我尝试了substring()方法但是虽然开头是相同的,但这些字符串的结尾并不相同。我怎样才能做到这一点?

4 个答案:

答案 0 :(得分:0)

您可以使用替换:。

var str = "ggggggg@localhost".replace('@localhost','');

答案 1 :(得分:0)

只需使用replace()

yourString.replace("@localhost", "");

这将使用空字符串替换字符串中出现的所有@localhost

答案 2 :(得分:0)

尝试"aaaaaaaaaaaa@localhost".replace("@localhost", "")

答案 3 :(得分:0)

"ggggggg@localhost".replace("@localhost", "");