On Jun 23, 7:06 pm, elduderino <[EMAIL PROTECTED]> wrote:
> Hi, I have a string of numbers that i'm turning in to an array with
> $A, like so:
>
> var string = '12345678910';
> var arr = $A(string);
>
> Problem is i need to deal with double figures, so in the example the
> problem comes when you get to 10 because $A just splits on every
> character so i get
> 1,2,3,4,5,6,7,8,1,0 where i really want 1,2,3,4,5,6,7,8,9,10.

Then:

  var arr = [1,2,3,4,5,6,7,8,9,10];


will do the job unambiguously.


> So is there any way i can specify something to split the string
> on....like if i had 1*2*3*4*5*6*7*8*9*10 and then split it on the
> *???

If you are to use any character, why not use a comma and an array
literal?


--
Rob

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Spinoffs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to