Changing the Case of a String : Case : String Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » String » Case »

 

Changing the Case of a String


 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        var sTitle:String = new String("ActionScript");
        trace(sTitle.toLowerCase());  
        trace(sTitle.toUpperCase());  
        trace(sTitle.valueOf());  
    }
  }
}
actionscript
ACTIONSCRIPT
ActionScript

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo String
» Case