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.
C#で英字や空文字列だけチェックしたい。正規表現を書き込もうとしましたが、うまくいきません:
@"[^$|a-zA-Z]"
どんなアドバイスも役に立ちます:)
"^[a-zA-Z]*$"0個以上の小文字または大文字に一致します。これは数字や空白とは一致しないことに注意してください。
"^[a-zA-Z]*$"