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
You'll want to look into JavaScript's substr or split, as this is not really a task suited for jQuery.