Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在玩html5中的模式属性。它接受正则表达式以判断表单域有效或无效。
我希望一个字段有效,如果它包含单词 John 而没有其他内容。我如何用正则表达式做到这一点?
应该是这样的:
pattern="^John$"
编辑:实际上,它看起来像^并且$是隐含的,所以这就足够了:
^
$
pattern="John"
正如Tim Pietzcker所指出的,要指定不区分大小写的匹配,您将使用以下内容:
pattern="(?i)john"