9

What do I have to change here to make it work?

my $str = "start middle end";
my $regex = / start ( .+ ) end /;
$str.=subst( / <$regex> /, { $0 } ); # dies: Use of Nil in string context
say "[$str]";
0

1 Answer 1

10

The problem is that interpolating a regex into another regex via the <$regex> syntax will not install a result in the match variable. There's two ways to get around this:

  • The easiest way is to just use the regex directly in subst, i.e. $str .= subst($regex, { $0 });
  • Give the interpolated regex an explicit name and access the result via that, i.e. $str .= subst( / <foo=$regex> /, { $<foo>[0] });

Both of these should work fine.

3
  • +1 I feel like I should have known it already but I didn't: you can just drop a regex var into < ... > and have it function as an inserted regex. And to think I've been generating complex escaped strings to dump in with <{ ... }>. D'oh. Apr 19, 2019 at 19:05
  • From the "traps to avoid" documentation: Internally <{…}> EVAL-s the given string inside an anonymous regex, while $(…) lexically interpolates the given string. So <{…}> immediately breaks with more complicated inputs. and later > Therefore, try not to use <{}> unless you really need EVAL.
    – LuVa
    Apr 19, 2019 at 20:02
  • See related: stackoverflow.com/q/71057626/7270649 Mar 29, 2022 at 23:39

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.