Eyeon:Script/Reference/Libraries/string/upper
From VFXPedia
< Eyeon:Script | Reference | Libraries | string
Contents |
eyeonScript : string.upper
Arguments
string.lower( s )
- s (required, string)
a string to be converted to uppercase
Returns
An uppercase copy of the string 's'
Remarks
This function returns a copy of the string provided as an argument, with all lowercase characters converted to uppercase, 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.upper( "Hello World!" )
print ( i )