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.
ASP.NET アプリケーションのテキスト ボックスに適用するために、拡張 ASCII 文字を許可しない正規表現を探しています。助けてください!
以下は、ASCII 文字のみを含む文字列にのみ一致します。
^[\x00-\x7F]+$
使用できる拡張 ASCII 文字のみを禁止するには
^[^\x80-\xFF]+$