我想为查询字符串创建一个表达式,这东西很难!

发布于 2024-08-31 22:06:43 字数 298 浏览 4 评论 0原文

我想从 ASP.NET 中的搜索应用程序的查询字符串中提取一些关键字。

我首先解码了 url 字符串,所以它是纯文本

我有这个开始,但我想添加一个关键字组

([\?\&])q=[^\&]+[\&]?

我明白了?q=港口登陆牙科&

我想删除纯单词的内容,但不确定这是否可能

我还有一长串可能的查询字符串值字段,我想检查它们

?q=
@q=
?qs=
&qs=

I want to extract some keywords out of a query string for a search application in asp.net.

I decoded the url string first, so it's plain text

I have this to start with, but I want to add a keyword group

([\?\&])q=[^\&]+[\&]?

I get this ?q=harbour landing dental&

I'd like to trim off the stuff for pure words, but not sure if that's possible

I also have a long list of possible query string value fields that I want to check against

?q=
@q=
?qs=
&qs=

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

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

发布评论

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

评论(2

为人所爱 2024-09-07 22:06:43

为什么不直接使用 HttpRequest.QueryString 集合?

Why don't you just use the HttpRequest.QueryString collection?

长梦不多时 2024-09-07 22:06:43

如果您有权访问HttpRequest,则应该使用HttpRequest.QueryString 属性。

如果您无权访问它并且只有实际的查询字符串作为字符串,您应该使用 HttpUtil.ParseQueryString 函数获取 NameValueCollection

If you have access to the HttpRequest you should just use the HttpRequest.QueryString property.

If you don't have access to that and only have the actual query string as a string you should just use the HttpUtil.ParseQueryString function to get the NameValueCollection.

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