Hi there, What would be the equivalent of this PHP code snippet, in Flex 2?
$str = implode( ':', array( 'a', 'b' ) ); (result, $str = 'a:b' ) Is there an implode-type function? (basically 'glues' an array together with a specified character). TIA Alex

