Mega Code Archive

 
Categories / Flash ActionScript / String
 

Remove characters or words instead of replacing them

package{   import flash.display.Sprite;      public class Main extends Sprite{     public function Main(){         var example:String = "This is a cool sentence.";         trace( example.replace( "cool ", "" ) );     }   } }