Help for this page

Select Code to Download


  1. or download this
    $string=~s/([b-w]+)([^a]+)([a]+)/uc($1).$2.uc($3)/e;
    
  2. or download this
    $string=~s/([b-w]+)([^a]+)([a]+)/\U$1\E$2\U$3/;