Basically I require a regex to search for all href=" in a string, however, only match those without http:// after. I came up with a regex however there are three problems.
a) It will not match if there is a h after the href="
b) It matches the next character after href="
c) It doesn’t even work properly.
The regex was href="[^http]
Does anyone know the correct regex?