This is about the code editor Notepad++.
I'm looking for a regular expression that will solve the following problem:
I have a set of html files. I need to find all links in them that are not links to javascript functions. If I search for the string 'href="' I get 342 results and if I search for 'href="javascript' I get 301 results. I'd like to get at the 41 elements that are only in the first set. That is all links that are not to javascript function calls.
I'd be grateful if anyone more familiar with regular expressions than I currently am could help me out on this one.