Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
In case that was unclear I'd like to apply the regular expression in notepad++'s search window. – dude Sep 24 '10 at 21:01

3 Answers

This will match urls that don't start with "j", which probably will work for you.

href="[^j]
share|improve this answer
thank you. This worked. It would exclude any relative links starting with a 'j' but since I know I was looking for 41 (from the searches described above) I know I got them all. So thanks. – dude Sep 24 '10 at 21:17

PowerGrep w/ RegexBuddy - I use notepad++ and PowerGrep

share|improve this answer

I don't know exactly the RegExp engine of Notepad++ but the extended regular expression would look like:

href="(?:(?!javascript).)
share|improve this answer
there does not seem to be a '?' in notepad++ – dude Sep 24 '10 at 21:08
I looked here: sourceforge.net/apps/mediawiki/notepad-plus/… – dude Sep 24 '10 at 21:09
the regexp: href="(javascript) finds all the javascript function calls but I have not managed to negate the (javascript) so far – dude Sep 24 '10 at 21:12
that's sad, could you use a different/better editor? – KARASZI István Sep 24 '10 at 21:13
sure could, any recommendations? – dude Sep 24 '10 at 21:16
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.