- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
duplicating elements in list
What's the easiest way to duplicate elements in a list
myListA = {"y"};
//Result I need:
myList = {"y", "y"};
// This should work with an arbitrary number of elements in the list
myListB = {"y1", "y2", "y3"};
//Results
myList = {"y1", "y2", "y3","y1", "y2", "y3"};
2 ACCEPTED SOLUTIONS
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: duplicating elements in list
Is this what you are looking for?
myListA={"y"};
myList = myListA || myListA;
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: duplicating elements in list
Another way:
Names Default to Here( 1 );
list = { "a", "b", "c" };
Repeat( list, 3 );
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: duplicating elements in list
Is this what you are looking for?
myListA={"y"};
myList = myListA || myListA;
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: duplicating elements in list
Yes, it was a workaround in my script to deal with this bug.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: duplicating elements in list
Another way:
Names Default to Here( 1 );
list = { "a", "b", "c" };
Repeat( list, 3 );