I have this string 'john smith~123 Street~Apt 4~New York~NY~12345'
Using javascript what is the fastest way to parse this into
var name = "john smith"; var street= "123 Street";
etc
|
|
I have this string 'john smith~123 Street~Apt 4~New York~NY~12345' Using javascript what is the fastest way to parse this into var name = "john smith"; var street= "123 Street"; etc
|
|||
|
|
|
|
With simple JavaScript:
|
||
|
|
|
|
Something like:
Is probably going to be easiest |
||
|
|
|
|
well, easiest way would be something like:
|
||
|
|
|
|
You don't need jQuery.
|
||
|
|
|
|
You'll want to look into JavaScript's substr or split as this is not really a task suited for jQuery |
||
|
|