本文介绍了如何在正则表达式中包含双引号(“)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有谁知道如何在正则表达式中包含双引号.我写了这个正则表达式但无法包含双引号
Does any one know how to include double quote in regular expression.I wrote this regex but unable to include the double quote
<asp:RegularExpressionValidator ID="KeywordsRegex" runat="server"
ValidationExpression="^[+\-\!\(\)\:\^\[\]\{\}\~\*\?\&&\||].*$"
ControlToValidate="Keywords" ErrorMessage="Search keyword is not valid."
Text="*"></asp:RegularExpressionValidator>
推荐答案
尝试将反斜杠 (\
) 后跟 "
.那将是正确的 XML.
Try putting a backslash (\
) followed by "
. That would be proper XML.
这篇关于如何在正则表达式中包含双引号(“)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!