I can't seem to get this to work it keeps returning null. I need a very simple way to get a count of the number of quotes in a string.
var wtf = '"""'
var count = wtf.match(/"/g);
alert(count);
This has the same problem.
var count = tableitems[i].match(/\"/g);
alert(count);