Re: first letter of the word in CAPS
aarcee wrote:
> Hello all ,
>
> I need to display a word with the first character in CAPS .
>
> that is , split then the display should be Split
>
> Thanks
> RC
if you have Python in your unix version,
>>> "split".capitalize()
'Split'
>>>
|