正则表达式字符串之间的所有内容

发布于 2024-10-19 09:16:05 字数 221 浏览 2 评论 0原文

我有一个可以以两种不同方式查看的字符串:

foo=bar (everything after "=" including any other character)
or
foo=bar&bar (everything between "=" and "&")

我想在这种特殊情况下使用正则表达式,如何替换 foo 的值

I have a string that can look in two different ways:

foo=bar (everything after "=" including any other character)
or
foo=bar&bar (everything between "=" and "&")

I would like to use a regexp for this particular case, how could I replace the value of foo

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

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

发布评论

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

评论(1

原野 2024-10-26 09:16:05

匹配 (foo)=([^&]+) 将捕获 foo 以及等号相应右侧内容的值。我不确定你到底想用它做什么。

Matching (foo)=([^&]+) will capture foo and the value of the stuff on the corresponding right-hand side of the equals sign. I'm not sure exactly what you're looking to do with it.

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