I've got a JS string
var str = '<at id="11:12345678">@robot</at> ping';
I need to remove this part of a string
<at id="11:12345678">@
So I am trying to use
var str = str.replace("<at.+@","");
But there is no change after excution. Moreover if I try to use match it gives me
str.match("<at.+@");
//Result from Chrome console Repl
["<at id="11:12345678">@", index: 0, input: "<at id="11:12345678">@robot</at> ping"]
So pattern actualy works but replace do nothing
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…