Help for this page

Select Code to Download


  1. or download this
    # surround all uppercase characters in the passed parameter with *'s
    # and all lowercase characters with _'s
    ...
    $text = "I met this guy, and he looked like he might have been a hat c
    +heck clerk at an ice rink, which in fact, he turned out to be.  Let X
    + = X.";
    transmogrify($text);
    print $text;
    
  2. or download this
    # surround all uppercase characters in the passed parameter with *'s
    # and all lowercase characters with _'s
    ...
    $text = "I met this guy, and he looked like he might have been a hat c
    +heck clerk at an ice rink, which in fact, he turned out to be.  Let X
    + = X.";
    $text = transmogrify($text);
    print $text;