vote up 0 vote down star

I know this is a pretty basic regex, could someone explain what it is doing please?

^[^@]+@[-a-z0-9.]+$
flag

5 Answers

vote up 8 vote down check

^ - match start of string

[^@]+ - match one or more characters that aren't an @

@ - match an @

[-a-z0-9.]+ - match one or more characters from the set '-', lower case 'a'-'z', the digits '0'-'9', '.'

$ - match end of string

So, match any string that consists of some characters that aren't '@', followed by '@', followed by some number of lower case letters / digits / dashes / full stops.

link|flag
vote up 2 vote down

It says "match one or more non-@ character followed by an @, followed by one or more alphanumeric characters, a - or a ." The ^ at the beginning and the $ at the end signify this pattern must also be against the beginning and end of the entire string (^ means "beginning of string" and $ means "end of string").

link|flag
1  
You missed the + after [^@] – moonshadow Sep 3 at 18:35
The [^@]+ matches one OR MORE non-@ characters. – TLiebe Sep 3 at 18:36
@moon @tliebe Oops, thanks – Rex M Sep 3 at 18:37
vote up 1 vote down

Matches a string that doesn't start with at least 1 @ character, followed by matching a @, then a -, . or any alphanumeric characters at least once.

I'm guessing it's a very loose email validator.

link|flag
vote up 0 vote down

To expand upon Rex's answer, it looks like a naive email validation regex.

link|flag
vote up 4 vote down

I think it's trying to match an email address (not very well)

Example matches:

  • abc@example.com
  • podcast@nospam.com
  • hello(world)@9
  • a[]&^&£^$^&£@.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.