diff --git a/Advanced PassGen/Classes/Password.cs b/Advanced PassGen/Classes/Password.cs index 10146dd..28dc6f1 100644 --- a/Advanced PassGen/Classes/Password.cs +++ b/Advanced PassGen/Classes/Password.cs @@ -54,7 +54,7 @@ private static int CheckStrength(string password) if (password.Length >= 10) score++; if (Regex.Match(password, @"\d", RegexOptions.ECMAScript).Success) score++; if (Regex.Match(password, @"[a-z]", RegexOptions.ECMAScript).Success && Regex.Match(password, @"[A-Z]", RegexOptions.ECMAScript).Success) score++; - if (Regex.Match(password, @"[:,µ,;,<,>,+,!,@,#,$,%,^,&,*,?,_,~,-,£,(,);\[,\],⟨,⟩]", RegexOptions.ECMAScript).Success) score++; + if (Regex.Match(password, @"[:,µ,;, ,<,>,+,!,@,#,$,%,^,&,*,?,_,~,-,£,(,);\[,\],⟨,⟩]", RegexOptions.ECMAScript).Success) score++; return score; }