带有转义斜杠的 JavaScript 正则表达式不会替换

发布于 2024-10-11 21:08:27 字数 312 浏览 4 评论 0原文

将它们放入正则表达式时是否必须转义斜杠?

myString = '/courses/test/user';
myString.replace(/\/courses\/([^\/]*)\/.*/, "$1");
document.write(myString);

它不打印“test”,而是打印整个源字符串。

请参阅此演示:

http://jsbin.com/esaro3/2/edit

Do i have to escape slashes when putting them into regular expression?

myString = '/courses/test/user';
myString.replace(/\/courses\/([^\/]*)\/.*/, "$1");
document.write(myString);

Instead of printing "test", it prints the whole source string.

See this demo:

http://jsbin.com/esaro3/2/edit

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

风铃鹿 2024-10-18 21:08:27

你的正则表达式是完美的,是的,你必须转义斜杠,因为 JavaScript 使用斜杠来指示正则表达式。

然而,问题是 JavaScript 的 replace 方法不执行就地替换。也就是说,它实际上并没有改变字符串——它只是给你替换的结果。

试试这个:

myString = '/courses/test/user';
myString = myString.replace(/\/courses\/([^\/]*)\/.*/, "$1");
document.write(myString);

这将 myString 设置为替换的值。

Your regex is perfect, and yes, you must escape slashes since JavaScript uses the slashes to indicate regexes.

However, the problem is that JavaScript's replace method does not perform an in-place replace. That is, it does not actually change the string -- it just gives you the result of the replace.

Try this:

myString = '/courses/test/user';
myString = myString.replace(/\/courses\/([^\/]*)\/.*/, "$1");
document.write(myString);

This sets myString to the replaced value.

紫南 2024-10-18 21:08:27

/[\/]/g 匹配正斜杠。
/[\\]/g 匹配反斜杠。

/[\/]/g matches forward slashes.
/[\\]/g matches backward slashes.

淡淡の花香 2024-10-18 21:08:27

实际上,在字符类内部时,您不需要转义斜杠,如示例的一部分(即 [^\/]* 就可以了,因为 [^/] *)。如果它位于字符类之外(就像示例的其余部分,例如 \/courses),那么您确实需要转义斜杠。

Actually, you don't need to escape the slash when inside a character class as in one part of your example (i.e., [^\/]* is fine as just [^/]*). If it is outside of a character class (like with the rest of your example such as \/courses), then you do need to escape slashes.

小瓶盖 2024-10-18 21:08:27

string.replace 不会修改原始字符串。相反,a 返回一个已执行替换的新字符串。

尝试:

myString = '/courses/test/user';
document.write(myString.replace(/\/courses\/([^\/]*)\/.*/, "$1"));

string.replace doesn't modify the original string. Instead, a returns a new string that has had the replacement performed.

Try:

myString = '/courses/test/user';
document.write(myString.replace(/\/courses\/([^\/]*)\/.*/, "$1"));
好久不见√ 2024-10-18 21:08:27

请注意,如果您使用 new RegExp() 构造函数,则不必转义 /

console.log(new RegExp("a/b").test("a/b"))

Note, that you don't have to escape / if you use new RegExp() constructor:

console.log(new RegExp("a/b").test("a/b"))

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文