๐Ÿ“˜ Palindrome test using Perl 6

๐Ÿ“˜ Palindrome test using Raku

N. B. Perl 6 has been renamed to Raku. Click to read more.


Check if the entered string is palindromic.

A palindrome is a string that can be read from both ends: left to right or right to left. First, start with the simple case when the string contains only letters. (Thus, spaces and punctuation do not affect anything.)

In Task 5, Reverse a string, the flipmethod is used to reverse a string. To check whether it is a palindrome, compare the string with its flipped version.

my $string = prompt('Enter a string: ');
my $is_palindrome = $string eq $string.flip;

say 'The string is ' ~ 
   (!$is_palindrome ?? 'not ' !! '') ~ 
   'palindromic.';

This code works well with single words like ABBA orย madam or kayak.

Let us take the next step and teach the program to work with sentences that contain spaces and punctuation characters. For removing all the non-letter characters, regexes are a good choice:

$string ~~ s:g/\W+//;

Theย \W+ regex matches with all non-word characters. All occurrences of them are removed from the string (replaced with nothing). Theย :g adverb tells the regex to repeatedly scan the whole string.

Additionally, the string should be lowercased:

$string .= lc;

Theย lc method is called onย $string, and the result is assigned back to the same variable. This construction is equivalent to the following:

$string = $string.lc;

Add these two lines to the program:

my $string = prompt('Enter a string: ');

$string ~~ s:g/\W+//;
$string .= lc;

my $is_palindrome = $string eq $string.flip;

say 'The string is ' ~ 
   (!$is_palindrome ?? 'not ' !! '') ~ 
    'palindromic.';

Check the modified program against a few random sentences and a few palindromes:

Never odd or even.

Was it a rat I saw?

Mr. Owl ate my metal worm.

Thatโ€™s all. As an additional stroke, it is a good thing to simplify the concatenated string a bit and use interpolation:

my $string = prompt('Enter a string: ');
$string ~~ s:g/\W+//;
$string .= lc;my $is_palindrome = $string eq $string.flip;
my $not = $is_palindrome ?? '' !! ' not';
say "The string is$not palindromic.";

One thought on “๐Ÿ“˜ Palindrome test using Perl 6”

Leave a Reply

Your email address will not be published. Required fields are marked *

Retype the CAPTCHA code from the image
Change the CAPTCHA codeSpeak the CAPTCHA code