What is the difference between "\\w+@\\w+[.]\\w+" and "^\\w+@\\w+[.]\\w+$"? I have tried to google for it but no luck.
What is the difference between \\w+@\\w+[.]\\w+ and ^\\w+@\\w+[.]\\w+$ ? I have tried to google
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
^means “Match the start of the string” (more exactly, the position before the first character in the string, so it does not match an actual character).$means “Match the end of the string” (the position after the last character in the string).Both are called anchors and ensure that the entire string is matched instead of just a substring.
So in your example, the first regex will report a match on
email@address.com.uk, but the matched text will beemail@address.com, probably not what you expected. The second regex will simply fail.Be careful, as some regex implementations implicitly anchor the regex at the start/end of the string (for example Java’s
.matches(), if you’re using that).If the multiline option is set (using the
(?m)flag, for example, or by doingPattern.compile("^\\w+@\\w+[.]\\w+$", Pattern.MULTILINE)), then^and$also match at the start and end of a line.