vote up 2 vote down star

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

flag

55% accept rate

5 Answers

vote up 7 vote down check

With simple JavaScript:

var split = 'john smith~123 Street~Apt 4~New York~NY~12345'.split('~');

var name = split[0];
var street = split[1];

etc...
link|flag
vote up 2 vote down

You don't need jQuery.

var s = 'john smith~123 Street~Apt 4~New York~NY~12345';
var fields = s.split(/~/);
var name = fields[0];
var street = fields[1];
link|flag
vote up 1 vote down

You'll want to look into JavaScript's substr or split as this is not really a task suited for jQuery

link|flag
vote up 1 vote down

well, easiest way would be something like:

var address = theEncodedString.split(/~/)
var name = address[0], street = address[1]
link|flag
vote up 1 vote down

Something like:

var divided = str.split("/~/");
var name=divided[0];
var street = divided[1];

Is probably going to be easiest

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.