Closed Sainan closed 8 months ago
For example, (..){3}. There is no other way to write this in regex that also captures correctly, but it is possible by cloning the group exactly:
(..){3}
(?'deez'..){3}
(?:....(?'deez'..))
(?'deez'..){3,}
(?:....(?'deez'..)+|..(?'deez'..)|(?'deez'..))
(?'deez'..){1,3}
(?:....(?'deez'..)|..(?'deez'..)|(?'deez'..))
For example,
(..){3}
. There is no other way to write this in regex that also captures correctly, but it is possible by cloning the group exactly:(?'deez'..){3}
->(?:....(?'deez'..))
(?'deez'..){3,}
->(?:....(?'deez'..)+|..(?'deez'..)|(?'deez'..))
(?'deez'..){1,3}
->(?:....(?'deez'..)|..(?'deez'..)|(?'deez'..))