Skip to main content

The "string_lower_all" Function

Syntax#

string_lower_all(str);
ArgumentTypeDescription
strstringThe string to modify

Description#

Converts a string to all lowercase letters. Applies to English characters A-Z only.

info

Like the built-in string_lower function, but nearly 2x faster!

Example#

var mystring = "HELLO, WORLD!";
draw_text(25, 25, string_lower_all(mystring));
// Result: "hello, world!"