javascript如何使用replace替换?

<script>
        function replacer(word) {
          return 'hello';
        }
        var newString = 'abc[你好]de[他]fg'.replace(/^\[[^\u0000-\u00FF]{1,2}\]$/gi, replacer);
        alert(newString)//todo:为什么这里显示的不是hellohello,我想把[你好][他]替换成hello
    
    </script>
阅读 1.7k
1 个回答

不要匹配开始^和匹配末尾$

function replacer(word) {
    return 'hello';
}
var newString = 'abc[你好]de[他]fg'.replace(/\[[^\u0000-\u00FF]{1,2}\]/gi, replacer);
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题