|
Change Case
Using this function you can convert a strong to upper or
lowe case. For example you may have a string:
somename = "Rich Hall"
The code would be:
result1 = (ucase(somename))
result2 = (lcase(somename))
Response.Write(result1)
Response.Write(result2)
And the result would be:
RICH HALL
rich hall
|