我想为查询字符串创建一个表达式,这东西很难!
我想从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不直接使用 HttpRequest.QueryString 集合?
Why don't you just use the HttpRequest.QueryString collection?
如果您有权访问
HttpRequest
,则应该使用HttpRequest.QueryString
属性。如果您无权访问它并且只有实际的查询字符串作为字符串,您应该使用
HttpUtil.ParseQueryString
函数获取NameValueCollection
。If you have access to the
HttpRequest
you should just use theHttpRequest.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 theNameValueCollection
.