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