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.
一致する正規表現が必要ですが、一致[a-zA-Z][a-zA-Z0-9_-]*しない場合に限りadminます。
[a-zA-Z][a-zA-Z0-9_-]*
admin
アイデアは、ブロックadminして、他のすべてを上記の正規表現に一致させることです。
何か案は?
「管理者」を除外するには、負の先読みを使用します。
^(?!admin$)[a-zA-Z][a-zA-Z0-9_-]*$
(?!^admin$)アイデアは、入力が「admin」と一致しないことを主張するために、最初のようなものが必要であるということです。
(?!^admin$)