I am new to Php starting working with regular expressions.
I am working on validating the Password input field data tried some other patterns like preg_match('/^[A-Z]*$/', $password)
but this didn't work for password yet this regular expression is working on e-mail and UserName field.
So searched for the answer on google and got this pattern('@[A-Z]@')
regular expression and it works fine but i don't understand what is the meaning of @ in this pattern
There are also other validation rules I only mentioned capital letter just to ask about my query...