gpt4 book ai didi

JavaScript String.replace() 函数

转载 作者:行者123 更新时间:2023-11-29 09:59:37 25 4
gpt4 key购买 nike

以下替换

"index.html".replace('\.html$', '_fr.html');

返回“index.html”,表明第一个参数没有匹配任何内容。但是,如果我删除“$”

"index.html".replace('\.html', '_fr.html');

然后第一个参数匹配并返回“index_fr.html”。

回到第一个例子,有人能解释为什么“.html$”似乎与“index.html”不匹配吗?

最佳答案

因为这不是正则表达式 - JavaScript 中的正则表达式看起来像:

/\.html$/

没有引号。 String.replace 采用字符串或正则表达式文字。

关于JavaScript String.replace() 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4163493/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com