Eyeon:Script/Reference/Libraries/string/lower
From VFXPedia
< Eyeon:Script | Reference | Libraries | string
Contents |
String : string.lower
Arguments
string.lower( s )
- s (required, string)
a string to be converted to lowercase.
Returns
A lowercase copy of the string 's'
Remarks
This function returns a copy of the string provided as an argument, with all uppercase characters converted to lowercase, as specified by the current locale (defined by the operating system).
Requirements
- eyeonScript 5.0
- Fusion 5.0
Examples
-- convert to lowercase -- returns "hello world!"
i = string.lower( "Hello World!" ) print ( i )