camelCase by masato_hi

<?while($s=fgets(STDIN)){preg_match_all('/[a-z]+|[A-Z]+/',$s,$a);$i=0;while($b=$a[0][$i]){echo$i++?ucfirst(strtolower($b)):$b;}echo"
";}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page