String case: Difference between revisions

Content added Content deleted
(add 4D)
Line 2: Line 2:


Take the string "alphaBETA", and demonstrate how to convert it to UPPER-CASE and lower-case.
Take the string "alphaBETA", and demonstrate how to convert it to UPPER-CASE and lower-case.

==[[4D]]==
[[Category:4D]]

$string:="alphaBETA"
$uppercase:=Uppercase($string)
$lowercase:=Lowercase($string)


==[[Ada]]==
==[[Ada]]==