To alter the original string, reassign the return value to it, as follows : Case : String Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » String » Case »

 

To alter the original string, reassign the return value to it, as follows


 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        var example:String = "What case?";
        example = example.toLowerCase(  );
    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo String
» Case