Thanks for this thread

El Tuesday, 16 de January del 2018 a les 19:28, Todd Chester va escriure:

But I do have to use `.*?` in the middle when matching two things

$ perl6 -e 'my $x="abcsdd1efg1234xyz"; $x ~~ m/(sd..).*?(12..)/; say
"$0, $1"'
sdd1, 1234

The '?' is not necessary ;-)

perl6 -e 'my $x="abcsdd1efg1234xyz"; $x ~~ m/(sd..).*(12..)/; say "$0, $1"'
sdd1, 1234


Cheers!

Reply via email to