I want to put this regexs into one regex, but dont now how:
/^([0-9]{2,4})\-([0-9]{6,7})$/
/^\*([0-9]{4})$/
so the string can get XX(XX)-XXXXXX(X) or *XXXX
Thanks.
|
I want to put this regexs into one regex, but dont now how:
so the string can get XX(XX)-XXXXXX(X) or *XXXX Thanks. |
||||
|
|
|
to merge two regular expressions
This may change the order of one set of capturing parentheses. Also note that parentheses may not be needed, e.g. In other languages which support regular expressions with named captures, you can use those. |
|||||
|
|
You can OR-them this:
so that either will match... the trouble you get is that when the second one matches you don't get \1 ($1) and \2 ($2) set... |
|||
|
|