Help for this page

Select Code to Download


  1. or download this
    for (split(/:/, $$pattern)) {
    
        # make sure it starts and ends with spaces
    ...
        }
        $out .= "\n";
    }
    
  2. or download this
    while (/(.)/g) {
            $camel .= $1 if $1 ne " ";
    }
    
  3. or download this
    tr/ //d;
    $camel .= $_;