Eyeon:Script/Reference/Libraries/string/upper

From VFXPedia

< Eyeon:Script | Reference | Libraries | string
Revision as of 14:01, 9 December 2006 by Peter (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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 )


Tips for upper (edit)

EyeonTips:Script/Reference/Libraries/string/upper