Perl 6 is now Raku! Go to #raku and #raku-dev | OLD irc logs of this channel: colabti.org/irclogger/irclogger_log/perl6
Set by AlexDaniel on 14 November 2019.
fluca1978 my memory is not serving me well: how could I extract the title from a line like 'title: "A B"'? 13:17
I thought something like /title:\s? \".*\"/ but apparently it is not working 13:18
shame on me, the colon must be escaped /title\:\s+ \"$<title>=.*\" / 13:20
sena_kun m: say 'title: "A B"' ~~ / 'title: "' $<title>=.*? '"' / 13:29
evalable6 「title: "A B"」
title => 「A B」
sena_kun fluca1978, ^
fluca1978 thanks sena_kun 13:31