String.concat( ) appends new values to the end of an existing string : String : String Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » String » String »

 

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);     
    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo String
» String