regex - Notepad++ I'm looking for a regexp to select all occurances of 'href="' that do not match 'href="javascript' -


this code editor notepad++.

i'm looking regular expression solve following problem:

i have set of html files. need find links in them not links javascript functions. if search string 'href="' 342 results , if search 'href="javascript' 301 results. i'd @ 41 elements in first set. links not javascript function calls.

i'd grateful if more familiar regular expressions me out on one.

this match urls don't start "j", work you.

href="[^j] 

Comments

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -