We have learnt about \L (lower case characters until \E) and \l (lower case next character) and corresponding upper case \U \u so that
|
There are a set of function calls implementing these so that |
lc(STRING) converts STRING to lower case |
lcfirst(STRING) converts first character in STRING to lower case |
uc and ucfirst play same role for upper case |
ucfirst(lc 'fOX') returns 'Fox' |