pcre2el
pcre2el copied to clipboard
Translate "(js|coffee)" case to "\\(coffee\\|js\\)"
I found (js|coffee)
will be translate to "\\(\\(?:coffee\\|js\\)\\)"
But, i think this is equivalent to "\\(coffee\\|js\\)"
?