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(6, 12)); // Displays: Script
}
}
}
Related examples in the same category