String case: Difference between revisions

Content deleted Content added
Rdm (talk | contribs)
Chkas (talk | contribs)
Line 1,360:
EasyLang does not have string case functions. The functions provided below only work with ASCII.
<syntaxhighlight lang="easylang">
funcproc toUppercase string$ . result$ .
for i = 1 to len string$
code = strcode substr string$ i 1
Line 1,369:
.
.
funcproc toLowercase string$ . result$ .
for i = 1 to len string$
code = strcode substr string$ i 1