use v5.16.0; my $tag = 'tag'; my $string = '... value'; my $parse = qr{<$tag>(?.*?)}s; $string =~ $parse and say 'found: ', $+{'val'}