Is there a regex pattern that will match a string that contains repeated pattern, e.g.:

"a"|"b","c"|"d",...,"y"|"z"

Do you have any idea?

Thanks.

link|improve this question

67% accept rate
Could you give some examples? – Gumbo Mar 15 '09 at 17:16
+1 on examples. Do you mean "any repeated pattern" or the specific pattern you mentioned? Give some examples and counter-examples. – Jason Cohen Mar 15 '09 at 17:17
feedback

2 Answers

up vote 3 down vote accepted

Maybe you are looking for something like this:

^"."\|"."(,"."\|".")*$

This will match a comma-separated list of sequences of form "α"|"β" where α and β can be any character.

link|improve this answer
Thanks, but it still match "a"|"b","c"|"d",aaa or "a"|"b","c"|"d", Can u fix it? Plz – ByulTaeng Mar 15 '09 at 17:43
I’ve added anchors for the start and the end of the string ^…$. – Gumbo Mar 15 '09 at 17:46
@Gumbo: I am sure that "u can fix it". ;-) Deleting my answer, +1 for you. – Tomalak Mar 15 '09 at 17:48
feedback

Just a note that to truly look for a repeated pattern, you can use grouping like so:

<(htmltag>).*\1

where \1 refers to the matched string in the 1st group repeated. Make sense?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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