Use slice : slice « String « Flash / Flex / ActionScript






Use slice

 

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

        var example:String = "Rabbits";
        
        trace( example.substring( 0 ) );       
        trace( example.slice( 0 ) );           
        
        trace( example.substring( -3, -1 ) );  
        trace( example.slice( -3, -1 ) );      
        
        trace( example.substring( 1, 3 ) );    
        trace( example.slice( 1, 3 ) );        
        
        trace( example.substring( 3, 1 ) );    
        trace( example.slice( 3, 1 ) );        


    }
  }
}

        








Related examples in the same category

1.Use slice method to cut string