substring method returns a substring starting with the starting index specified and containing all the characters up to, but not including, the ending index. : Substr : String Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » String » Substr »

 

substring method returns a substring starting with the starting index specified and containing all the characters up to, but not including, the ending index.


 

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

        var sTitle:String = new String("ActionScript");
        trace(sTitle.substring(612));  // Displays: Script

    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo String
» Substr