method postmatch
Documentation for method postmatch
assembled from the following types:
class Match
From Match
(Match) method postmatch
Defined as:
method postmatch(Match: --> Str)
Returns the part of the original string following the match.
'abcdefg' ~~ /cd/;say $/.postmatch; # OUTPUT: «efg»# will return a list of three match objects"abc123def" ~~ m:g/\d/;say $/.[1].postmatch; # OUTPUT: «3def»