var r = /^a$/ function matchExact(r, str) { var match = str.match(r); return match && str === match[0]; }