vote up 2 vote down star

Let's say I want to search for my trademark smiley "=8-)" on the web, to see all the websites where I've left comments. I'm not looking for code snippets, so Google Code Search won't help me...

Is there any web search engine out there that will accept regular expressions?

Yuval =8-)

flag

70% accept rate
I am tagging this offtopic, since it has nothing to do with programming. – freespace Sep 29 '08 at 8:23

closed as not programming related by Yuval Nov 8 '08 at 21:30

1 Answer

vote up 1 vote down

This is hard to do, because of the way the search engines work. Obviously they don't search the whole of the internet when you use them - they use indexes, and those indexes are based on words. In order to search for a string that isn't something they index, let alone a regex, they'd have to search the actual text. I'm sure the users of this site will be able to appreciate just how much slower this would be.

I agree that it would often be useful to be able to search for certain strings; if they used the same basic algorithms that they do but with a different definition of what a word is they would be more useful in certain cases, but probably rather less useful for most people most of the time.

link|flag

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