Common regex strings
^[ A-Za-z0-9_.,\/#:&+-]*$
^[ A-Za-z0-9ğüşöçİĞÜŞÖÇ_.,\/#:&+-]*$
^5[0-9]{9}$
^\+?(?:[0-9]\x20?){6,14}[0-9]$
^\b[A-F0-9]{8}(?:-[A-F0-9]{4}){3}-[A-F0-9]{12}\b$
^\d{16}$
^([0-9a-zA-Z]([\+\-_\.][0-9a-zA-Z]+)*[\-_]?)+@(([0-9a-zA-Z][-\w]*[0-9a-zA-Z]*\.)+[a-zA-Z0-9]{2,17})$
8 - 16 char should not less then 8 character and more than 16 character
(?=.*[a-z]) should contain lower case letter
(?=.*[A-Z]) should contain upper case letter
(?=.*[0-9]) should contain number
(?=.*[$-/ | :-? | {-~ | ! | " | ^ | _ |` | \[ | \]]) should contain any character below
$, %, &, ', (, ), *, +, -, ., /,
:, ;, <, =, >, ?, {, |, }, ~, !, ",
^, _, `, [, ], @, #
^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[$-/ | :-? | {-~ | ! | @ | # | " | ^ | _ |` | \[ | \]])^[a-zA-Z0-9$-/:-?{-~!@#"^_`\[\]]{8,16}