You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unmatchable dollar in regular expression
This regular expression includes an unmatchable dollar at offset 9.
This regular expression includes an unmatchable dollar at offset 17.
It seems to be complaining about the dollars in the forward lookahead assertion, i.e. (?=\[.*]$|[^][]*$), but both of those occur at the end of their respective alternatives, so they can match fine, and because it's just a lookahead assertion it doesn't actually consume the match and the following expression can still be tested as normal.