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.
検証テキストボックス形式hh.mm用のRegularExpressionValidatorを作成したいと思います。
この式は機能します:
^([0-9]|0[0-9]|1[0-9]|2[0-3]).[0-5][0-9]$
しかし、TextBoxに挿入する5454と、それも渡されますが、渡されるべきではありません。
5454
.任意の文字に一致する正規表現のメタ文字です。文字通りピリオドだけを一致させたい場合は、それをエスケープする必要があります。
.
^([0-9]|0[0-9]|1[0-9]|2[0-3])\.[0-5][0-9]$
あなたは逃げるのを忘れた.
試す