0

What does This regex pattern trying to search for

(AA|BB|CC){3}

is it trying to seach for AAAAAA or BBBBBB or CCCCCC or AAAAAABBBBBCCCCCC What does 3 indicate

When searched for AABBCC with same above patter regex debugger matched the whole pattern in 16 steps then backtracks to B in 18th step .Link to Regex Debugger.Why?

There was no reference which provided what (|){any digit } what this means.I searched it in | as well this ()

0 Answers0