I want to find and replace a bunch of links, except I don't know how to format the search expression. I want to find the links that look like this:
http://website.com/test.php?id=930&name=hello
The 930 and hello are the variables that are different.
edit: I tried "http://website.com/test.php?id=.*&name=.*">
but it selects a bunch of stuff after that too like img src on that line etc
I tried using [^"]
* or (.*?)
instead of .*
but it says it can't find the text :(