String.concat( ) appends new values to the end of an existing string
package{ import flash.display.Sprite;
public class Main extends Sprite{ public function Main(){ var original:String = "original string value."; var modified:String = original.concat( "now modified." ); trace(modified); } } }
Related Scripts with Example Source Code in same category :