TheConeHead
Programmer
Can anyopne give me a reg expr see if a string has ", " in it? (not including the "'s
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var re = /\,\s/g;
alert( re.test("cory, cara") );
alert( re.test("cory,cara") );
alert( re.test("cory cara") );