RosettaCodeData/Task/String-matching/Raku/string-matching-1.raku

4 lines
211 B
Raku
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
$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