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.
または例
if(playerName.Contains("<") || playerName.Contains("-")){ }
または、正規表現パターンで文字列をチェックする方法(^ [-0-9A-Za-z _] {5,15} $)
ありがとう
文字列には少なくとも-または<が含まれている必要があるとおっしゃっていると思いますか?それより
(^(?=.*[-<])[-0-9A-Za-z_<]{5,15}$)
これを可能にするために、ルックアラウンドの手法が使用されます