vote up 0 vote down star

I have the following patterns in a URL.

  1. John.Smith
  2. John.Smith.1
  3. John.Al-Smith
  4. John.al-smith.1
  5. John.Smith.Al-Caboon

Where the first (.) is mandatory and with at least one character before and after the first (.), the rest of the stuff (the numbers, hyphen, and the second (.)) are optional.
I created the following Regex:

^\w+.\w+-*\w*.?\d*\w*-*\w*

Though it successfully matched all the above patterns, it also matches some undesired patterns like:

  1. "login" (Without the mandatory first dot)
  2. "users/john" (with an undesired / and also without the mandatory first dot)
  3. "1234" (Invalid, the pattern has to start by a character)

What am I doing wrong here?

flag

How would you define character? Would J1hn.Smith be valid? – Dominic Rodger Nov 5 at 8:50
1  
You should escape dots with a backslash. Right now it's a wildcard, which would explain why some of the undesired strings match the pattern, too. – Franz Nov 5 at 8:52
@Dominic yeh, j1hn.smithy and 1jhn.smith would be valid. – 7alwagy Nov 5 at 9:10

4 Answers

vote up 2 vote down check

Problems observed with your regex
1. "." is a meta character in regex. It matches "anything". You should escape it to match the dot. Like this .
2. \w is a character class which includes small letters, caps, numbers and underscore. This explains why "1234" passed.

Try this

^[a-zA-Z]\w*(\.[-\w]+){1,2}$
link|flag
Just one small nitpick: most regex implementations do not let the DOT match \r and \n unless the DOT-ALL option (?s) is enabled. – Bart K. Nov 5 at 9:04
Thanks for the explanation, but your Regex didn't match anything of the patterns above! – 7alwagy Nov 5 at 9:09
@7alwagy not sure what you mean? i tried on regexpal.com and it did match perfectly. Do you like have this list in a file and doing a one by one search to match them or something ? then you should probably get rid of the ^,$ – Jass Nov 5 at 9:13
Specifically something like (john.al-smith) was not matched by your regex. – 7alwagy Nov 5 at 9:14
Here's a list of the unmatched patterns (using RegexDesigner): "john.al-caboon", "john.smith.1", "john.al-smith.1" – 7alwagy Nov 5 at 9:17
show 4 more comments
vote up 0 vote down

Use this expression: \w+\S*?\.\w+\S*

I read your definition as:

  • at least one character
  • mandatory dot
  • at least one character

This ran successfully using .NET RegexOptions.ECMAScript and RegexOptions.Multiline

link|flag
vote up 0 vote down

And \w means [A-Za-z0-9_]. What is why it matches "1234"

link|flag
vote up 1 vote down

maybe you should escape the dots

\.
link|flag
+1 thanks for pointing that out! – 7alwagy Nov 5 at 9:11

Your Answer

Get an OpenID
or

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