in reply to Swapping two parts of a string

FWIW a non regex answer
my $input = "(55.950254, -3.187606)"; my $result = '('.join(' ',reverse(split(/[(),]/,$input))).')';