Is there a way to achieve the equivalent of a negative lookbehind in javascript regular expressions? I need to match a string that does not start with a specific set of cha
/(?![abcdefg])[^abcdefg]m/gi yes this is a trick.
/(?![abcdefg])[^abcdefg]m/gi