hi i a beginner in working with regular expressions i have a regular expression for email as i have copied that from some other source
(?=.[@])
it is not working i wanted to test different combinations so i m trying to match only @ value for the input field but is not working. if i write the same to the numerical values it is working in the password field
((?=.[0-9]+).{6,})
***Note:***As i am practicing application of different methods and trying to get a clear idea about regex please ignore the common ethics like the password regex i chose.
Moreover i wanted to know why this ?=.
used preceding the pattern
Thanks in advance