unescape() function does not modify the existing string, but returns a new string : Escape : String Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » String » Escape »

 

unescape() function does not modify the existing string, but returns a new string


 


package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){

        var sTitle:String = new String("ActionScript%20Demo");
        trace(unescape(sTitle));  // Displays: ActionScript Demo

    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo String
» Escape