ASCIILowerCase

Qubes 6.8 Convert a string to lowercase using the ASCII character set

Syntaxe

function ASCIILowerCase(str: String): String
str: string to be converted

Remarques

The ASCIILowerCase function is used to convert a string to lowercase using the ASCII character set. It takes a string as input, and returns a new string with all uppercase characters converted to their lowercase equivalents.

Note that the ASCIILowerCase function only works with the ASCII character set, which includes only the basic English letters, numbers, and symbols. It does not support other character sets or international characters. If you need to convert a string to lowercase using a different character set, you will need to use the LowerCase function.

For more information on ASCII, see https://en.wikipedia.org/wiki/ASCII.

See also ASCIIUpperCase.

Exemples

var str := 'Hello, World!';
PrintLnt(ASCIILowerCase(str)); // outputs "hello, world!"

Classification

Internal