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

4 lines
208 B
Raku
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
so $haystack ~~ /^ $needle / # True if $haystack starts with $needle
so $haystack ~~ / $needle / # True if $haystack contains $needle
so $haystack ~~ / $needle $/ # True if $haystack ends with $needle