如何更换" @ ["字符串中的任何位置

时间:2017-09-18 11:04:50

标签: javascript regex

我的问题是关于正则表达式。我想在字符串中的任何位置替换"@["。尝试使用[@[]表达式,但它无效,因为它会替换字符串中任意位置的@

2 个答案:

答案 0 :(得分:2)

你可以使用正则表达式

/@\[/g

function replace(str){
    return str.replace(/@\[/g, '');
}


console.log(replace('@[]'));
console.log(replace('abcd@[absd]ahah@[ahah'));

答案 1 :(得分:0)

<!DOCTYPE html>
<html>
<body>

<p>Click the button to replace "Microsoft" with "W3Schools" in the paragraph below:</p>

<p id="demo">Visit Microsoft! @[</p>

<button onclick="myFunction()">Try it</button>

<script>
function myFunction() {
    var str = document.getElementById("demo").innerHTML; 
    var res = str.replace(/@\[/g, "W3Schools");
    document.getElementById("demo").innerHTML = res;
}
</script>

</body>
</html>