I need to have HTML's input elements pattern ignore the case of the value,
like have if the regex is /[a-z]*/ could I get it to match all uppercase letters too?
(I know I could just do /[a-zA-Z]*/, but that was an example.)
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
I don't think it is possible.
The specification on
<input pattern>
[1,2] specifies thatthe pattern uses the ECMAScript (i.e. Javascript) flavor of regex
it is compiled "with the global, ignoreCase, and multiline flags disabled"
In Javascript, the only way to make a regex ignore case is to set the modifier externally (
/.../i
). The PCRE syntax(?i)
is not supported.
Therefore, the pattern is always case-sensitive and [a-zA-Z]*
(i.e. making the regex itself explicitly case insensitive) is the only way to match the pattern in a case-insensitive way.