How can i match every variable that comes after the text "flt_man" and before "," in the following hash string?
#flt_man100,flt_man234,flt_man334,flt_manABC,
I tried this but it doesn't work.
var check = location.hash.match(/flt_man([^,]*)/g);
I need the match to return an array with values 100,234,334,"ABC"