# Array to string?

**URL:** https://forum.kirupa.com/t/array-to-string/222510
**Category:** Uncategorized
**Created:** [April 14, 2007, 1:26am UTC](https://forum.kirupa.com/t/array-to-string/222510 "2007-04-14T01:26:39Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![kikon](https://avatars.discourse-cdn.com/v4/letter/k/f05b48/32.png) [@kikon](https://forum.kirupa.com/u/kikon)
#### Post date: [April 14, 2007, 1:26am UTC](https://forum.kirupa.com/t/array-to-string/222510/1 "2007-04-14T01:26:39Z")

</div>

Is it possible to turn an array into a string? I’m stuck on project.

For example:

contents is an array containing: ("~a","~b","~c")

var my\_str:String = var contents:Array;  
contents = my\_str.split("~");  
trace(contents);

I’m trying to delete the ~ that’s been inserted, (in another part of my code earlier)

The result should be:  
(a,b,c)

how can I do this?
