I see you have three requirements to check. The password must contain:
- Atleast 8 characters
- atleast 1 number
- includes letters
Lets say your password is of type string called ‘strPassword’:
To check for 8 characters simply:
Trim and check the length.
To Trim:
strPassword.Trim
Check Length:
Insert ‘IF’ activity and nsert the following into the condition:
strPassword.Length < 8
Then: Insert Throw activity
Else: Insert log message with ‘strPassword.Length.ToString’
To check the password contains atleast 1 number
Use a Regex.IsMatch with an IF activity. Insert the following into the condition:
system.text.regularexpressions.regex.IsMatch(strPassword, “\d”)
Then: Insert Log message “Password contains atleast 1 number”
Else: Insert Throw activity
To check the password contains atleast 1 letter
Use a Regex.IsMatch with an IF activity. Insert the following into the condition:
system.text.regularexpressions.regex.IsMatch(strPassword, “[A-Za-z]”)
Then: Insert Log message “Password contains atleast 1 letter”
Else: Insert Throw activity
.
…
BONUS Requirements
To check the password contains atleast 1 uppercase/capital letter
Use a Regex.IsMatch with an IF activity. Insert the following into the condition:
system.text.regularexpressions.regex.IsMatch(strPassword, “[A-Z]”)
Then: Insert Log message “Password contains atleast 1 capital letter”
Else: Insert Throw activity
To check the password contains atleast 1 lowercase letter
Use a Regex.IsMatch with an IF activity. Insert the following into the condition:
system.text.regularexpressions.regex.IsMatch(strPassword, “[a-z]”)
Then: Insert Log message “Password contains atleast 1 lowercase letter”
Else: Insert Throw activity
You can learn Regex from these two sources:
Hopefully this helps
Cheers
Steve