MACROMEDIA FLEX-FLEX ACTIONSCRIPT LANGUAGE Reference page 420

Actionscript language reference
Table of Contents

Advertisement

Example
The following example creates a string with all lowercase characters and then creates a copy of that
string using
toUpperCase()
var lowerCase:String = "lorem ipsum dolor";
var upperCase:String = lowerCase.toUpperCase();
trace("lowerCase: " + lowerCase); // output: lowerCase: lorem ipsum dolor
trace("upperCase: " + upperCase); // output: upperCase: LOREM IPSUM DOLOR
See also
String.toLowerCase()
420
Chapter 6: ActionScript Core Classes
:

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the FLEX-FLEX ACTIONSCRIPT LANGUAGE and is the answer not in the manual?

Subscribe to Our Youtube Channel

This manual is also suitable for:

Flex

Table of Contents