jbrave
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2010
07:00 PM
array concatenation?
is there a way to concatenate arrays?
this results in a two element array containing two arrays, instead of one array containing all six elements.
- Joel
arrayone=["test","west","best"]
arraytwo=["guest","fest","blessed"]
arraythree= [arrayone+arraytwo]
this results in a two element array containing two arrays, instead of one array containing all six elements.
- Joel
Screenshades: The first Screensaver for Roku2!
Musiclouds: The best free internet music, on your Roku!
Ouroborialis: Psychedelic Screensaver for Roku!
Musiclouds: The best free internet music, on your Roku!
Ouroborialis: Psychedelic Screensaver for Roku!
3 REPLIES 3
hoffmcs
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2010
07:04 PM
Re: array concatenation?
This should work.
arrayone.Append(arraytwo)
jbrave
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2010
07:14 PM
Re: array concatenation?
seems to work. arraythree=arrayone.append(arraytwo) on the otherhand seems to result in type UNKNOWN
Screenshades: The first Screensaver for Roku2!
Musiclouds: The best free internet music, on your Roku!
Ouroborialis: Psychedelic Screensaver for Roku!
Musiclouds: The best free internet music, on your Roku!
Ouroborialis: Psychedelic Screensaver for Roku!

TheEndless
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2010
07:30 PM
Re: array concatenation?
Append doesn't return a value, it appends the second array to the first. If you need a third array, you should do this:
arrayone = [ "blah", "blah", "blah" ]
arraytwo = [ "blah", "blah", "blah" ]
arraythree = []
arraythree.Append(arrayone)
arraythree.Append(arraytwo)
My Channels: http://roku.permanence.com - Twitter: @TheEndlessDev
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)