Help for this page

Select Code to Download


  1. or download this
    if ($st =~ /, CA\b/) {
       $st =~ s/, CA\b/, California/;
       print "$st\n";
    }
    
  2. or download this
    if ($st =~ s/, CA\b/, California/) {
       print "$st\n";
    }