I found a fix my self
i just added < to the [^"] so it looks like this
(href\s*=\s*"[^"]*)(\x20)([^"]*")
then i found out that javascript in side the href was a problem
so i added : too the [^] and so it looks like this
(href\s*=\s*"[^:"]*)(\x20)([^"]*")
Theres a problem with that though because sometimes you have links like "http://" or "https" so i had to hand pick those but doing it this way saved me tons.