in reply to Re: multiple options for pattern match help
in thread multiple options for pattern match help

my $regexp = qr/ (?: ( int | char | bool | long ) ) /x;
There's still the grouping parentheses. It should be like this in order to follow lima1's update:
my $regexp = qr/ (?: int | char | bool | long ) /x;