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.
jQuery Validation Engine プラグインを使用しています。この正規表現は英数字のみを許可します。バックスラッシュ以外の他の文字を許可したいと思います。
/^[0-9a-zA-Z]+$/
/^[^\\]+$/
これはバックスラッシュの否定文字クラスです。正規表現リテラルでそれらのうちの 2 つが必要です。そうしないと、エスケープしようとします。]
]