IIS 7 URL重写正则表达式

发布于 2024-12-07 15:56:15 字数 430 浏览 0 评论 0原文

使用 IIS7 URL 重写模块,我尝试获取特定查询字符串参数的值,如果存在,我需要获取该参数的值。

示例 URL:

test.aspx?F5REDIRECTION&SearchType=HeaderSearch&hiddendims=&Keyword=tshirt&nkw=1&vsp=2

我需要检查“Keyword”参数是否存在,并且需要获取值“t-shirt”。

如果我测试运行此模式:

^.*F5REDIRECTION&SearchType=Header.*Keyword=(.*)$

结果为 "tshirt&nkw=1&vsp=2"

如何仅获得“Tshirt”?

Using IIS7 URL rewrite module, I am trying to get the value of a specific query string parameter, and if it exists I need to get the value of that parameter.

Example URL :

test.aspx?F5REDIRECTION&SearchType=HeaderSearch&hiddendims=&Keyword=tshirt&nkw=1&vsp=2

I need to check if "Keyword" parameter exists and I need to get the value "t-shirt".

If I test run this pattern :

^.*F5REDIRECTION&SearchType=Header.*Keyword=(.*)$

the result is "tshirt&nkw=1&vsp=2"

How do I get only "tshirt"?

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

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

发布评论

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

评论(1

吃→可爱长大的 2024-12-14 15:56:15

尝试这样的事情:

(?<=\?|&)Keyword=(.*?)(?=&|$)

或者如果环视不可用:

(?:\?|&)Keyword=(.*?)(?:&|$)

Try something like this:

(?<=\?|&)Keyword=(.*?)(?=&|$)

Or if lookarounds aren't available:

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