in reply to Re^3: Problem with alternating regex?
in thread Problem with alternating regex?

The double quote pairing is in fact correct
# /^set\szone\s("([^"]*)"|id\s\d+\s"([^"]*)")/ # ^ ^ ^ ^

Yes, it is actually the first format which has the right parenthesis in the wrong place. But, as you say, that wasn’t the OP’s problem either.

No. The OP's parenthesis matching really is correct - all of it. The parenthesis pairing is:

# v v # /^set\szone\s("([^"]*)"|id\s\d+\s"([^"]*)")/ # ^ ^ ^ ^

The OP's issue is that the parenthesis marked with 'v' are the $1 capture group. The two sets of parenthesis marked with ^ are what the OP hoped were $1, but really they are redundant grouping parenthesis.

True laziness is hard work