I have a string variable that is defined as the following:
Jane's Account-123456789-Bob's Account-123456-Fred's Account-246802-Lily's Account-13579-Jim's Account-46748764-
For the sake of this question let's say that is equal to var value1;
I am trying to take this string and run a query that will find a matching account number and then display the associated Account name. To do this, I have started by splitting the variable into an array:
var value2=value1.split("-");
When I do this the sorting function reorders the list by increasing numbers and then alphabetical order.
value2 = ,123456789,13579,246802,46748764,46748764,Bob's Account,Fred's Account,Jane's Account,Jim's Account,Lily's Account
I would like to know how I can break the string out into an array and still maintain the order of the split materials.
This would be the desired output:
,Jane's Account,123456789,Bob's Account,123456,Fred's Account,246802,Lily's Account,13579,Jim's Account,46748764
Thanks.

value1.replace('-',',')? – elclanrs Feb 27 at 1:09