Sunday 24 June 2018

How to grab substring before a specified character jQuery or JavaScript

Answer


Answer




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, '.')); 

Answer



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



While it's not the best place for definitive information on what each method does (mozilla developer network is better for that) w3schools.com is good for introducing you to syntax.


No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...