How to grab substring before a specified character jQuery or JavaScript

I am trying to extract everything before the ‘,’ comma. How do I do this in JavaScript or jQuery? I tried this and not working..

1345 albany street, Bellevue WA 42344

I just want to grab the street address.

var streetaddress= substr(addy, 0, index(addy, '.')); 

11 Answers
11

Leave a Comment