Help for this page

Select Code to Download


  1. or download this
    $s =~ s/([a-z])([A-Z])/$1 $2/g;
    
  2. or download this
    $s =~ s/([^A-Z])([A-Z])/$1 $2/g;