I would like some thoughts on how to write a regular expression which validates a pattern
ex. .??2
one of more characters followed by two question marks followed by one or more numbers and if only if there is another repeating pattern then the seperator will be a semi colon.
more examples
--??9;.??50;,??3 - in this example I have the pattern repeating and that is why the semi colon
or
*??5 - a * followed by two qnestions marks followed by a number and no semi colon as there are no repeating groups
This is what i currently have
.+\?\?\d+(;|)+