Javascript: negative lookbehind equivalent?
问题 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 characters. It seems I am unable to find a regex that does this without failing if the matched part is found at the beginning of the string. Negative lookbehinds seem to be the only answer, but javascript doesn't have one. EDIT: This is the regex that I would like to work, but it doesn't: (?<!([abcdefg]))m So it would match