Specifying a negative value simply counts backward from the end of the string where -1 is the last character. : Substr : String Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » String » Substr »

 

Specifying a negative value simply counts backward from the end of the string where -1 is the last character.


 

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

        var sTitle:String = new String("ActionScript AAAAA");
        trace(sTitle.substr(-126));  // Displays: Script

    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo String
» Substr