RosettaCodeData/Task/String-matching/Raku/string-matching-1.raku
2023-07-01 13:44:08 -04:00

3 lines
211 B
Raku

$haystack.starts-with($needle) # True if $haystack starts with $needle
$haystack.contains($needle) # True if $haystack contains $needle
$haystack.ends-with($needle) # True if $haystack ends with $needle