Hello,
How do i set only first letter uppercase in a string?
tnx!
Set text to
uppercase(left(text, 1)) & right(text, len(text) - 1)[/code:2m1c10yd] *edit* if you want the rest of the text to be lowercase [code:2m1c10yd]uppercase(left(text, 1)) & lowercase(right(text, len(text) - 1))[/code:2m1c10yd]
Develop games in your browser. Powerful, performant & highly capable.
ramones
THANK YOU!!!!!