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.
DataAnnotationと正規表現を使用してテキスト ボックスのエントリをフィルタリングすることは可能ですか? つまり、「apt」という単語が文字列に含まれている場合に無効な応答をトリガーするには?
はい、次のように、否定的なルックアラウンドを使用してそれを行うことができます。
public class MyModel { [RegularExpression(@"^((?!apt).)*$", ErrorMessage = "You can not have that")] public string MyValue { get; set; } }
これらのタイプの正規表現に関する参考用の質問を次に示します。
単語を含まない文字列に一致する正規表現?