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.
正規表現JAVAを使用してパスワードを検証するには、パスワードに次のものが含まれている必要があります。-少なくとも[az]-少なくとも[AZ]-少なくとも[1-9]特殊文字なし。
ありがとう
サミュエル
パスワードに含めることができる文字がである場合はa-z、A-Zを1-9使用できます
a-z
A-Z
1-9
"^(?=.*[a-z])(?=.*[A-Z])(?=.*[1-9])[a-zA-Z1-9]+$"
パスワードに他の文字を含めることができる場合は、それらが何であるかを指定するか、または何ができないかを指定する必要があります。
最小の長さを指定する場合は、+をegに変更し{10,}ます。これは10以上を意味します。
+
{10,}