Lower
Converts a string to lowercase using culture-invariant conversion rules.
Syntax
Lower(text)
Parameters
- text (string): The string to convert to lowercase
Returns
- string: The input string converted to lowercase
Description
Ensures consistent lowercase conversion behavior across different system locales and cultural settings.
Examples
var result1 = Lower("HELLO WORLD") # Returns "hello world"
var result2 = Lower("MiXeD CaSe") # Returns "mixed case"
var result3 = Lower("already lower") # Returns "already lower"
var result4 = Lower("ABC123") # Returns "abc123"