标签: javascript string
我有这个字符串:
var test = "toto@test.com";
我想替换" @"之后的所有字符。空值的字符。 我想得到这个字符串:
var test = "toto"
答案 0 :(得分:2)
试试这个:
test= test.split('@')[0]
答案 1 :(得分:0)
"toto@test.com".replace(/@.+$/, '')