With join() you can use any delimiter you want : Join : Array Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Array » Join »

 

With join() you can use any delimiter you want


 


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

        var aEmployees:Array = ["A""P""C""H"];
        var sEmployees:String = aEmployees.join(";");
        trace(sEmployees);
    }
  }
}
//A;P;C;H

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Array
» Join