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.
|
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.
| |||||
feedback
|
|
Maybe you are looking for something like this:
This will match a comma-separated list of sequences of form | |||||||
feedback
|
|
Just a note that to truly look for a repeated pattern, you can use grouping like so:
where \1 refers to the matched string in the 1st group repeated. Make sense? | |||
|
feedback
|