We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Backreferences To Failed Groups
Backreferences To Failed Groups
Sort by
recency
|
178 Discussions
|
Please Login in order to post a comment
For javascript - var Regex_Pattern = /\d{8}|^(\d{2}-){3}\d{2}$/;
However, some flavors, like JavaScript, treat backreferences to non-participating groups as matching an empty string, allowing the overall match to succeed. Betbhai9 login
Regex_Pattern = r"\d{8}|^(\d\d)(-\d\d){2}-(\d\d)$"
^\d{2}(-?)\d{2}(\1\d{2}){2}$
^(\d\d)(\-?)\1\2\1\2\1$
why this wont work in JAVA? Group1 = (\d\d) Group2 = (\-?)