Okay, I have a list that looks like this
OldList = [1000, 2000, 3000, 4000, 5000]
And I want to run all members of that list through a function called ListMultiply, like so
NewList = ListMultiply("/listfile/" + oldList]
How do I do this without concatenating string/list? Thanks.
The above will create a new list by adding the string
"/listfile/"to the string representation of each element and passing the result toListMultiply().