camelCase by futoase

import sys,re\x0d
for l in sys.stdin:\x0d
    x=re.split('([A-Z]+)',l);print x[0]+''.join(map(lambda x:x.title(),x[1:])),

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

download

return to the top page