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

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

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