Avisaro Online Documentation - Wiki
Impressum Kontakt Sitemap

LCASE$

Description

The LCASE$ function is a string function that returns another string where all upper case characters are changed into lower case characters. The original string remains unchanged.

Example

The following example demonstrates this:

let a$ = "HeLlO WoRlD"
let b$ = lcase$(a$)
print a$
print b$

Remarks

Internally, the C library function "tolower is used". See also UCASE$.