Help for this page

Select Code to Download


  1. or download this
    %replace = ( A => 'B', B => 'C', C => 'A');
    s/(A|B|C)/$replace{$1}/g;
    
  2. or download this
    s/A/B/;
    s/B/C/;
    s/C/A/;