Regular expressions with google web search

  • #1
269
2
Hi all,

Cam google web search accepet regular expressions? Especially, I need to search strings with any number between two words, for example: "vehicle runs at XXX km/h".

Thank you
 

Answers and Replies

  • #2
"vehicle runs at *** km/h" returns entries containing

vehicle runs at less than 60 km/h
Vehicle runs at speed of 70 km/h

and so on
 
  • #4
"vehicle runs at *** km/h" returns entries containing

vehicle runs at less than 60 km/h
Vehicle runs at speed of 70 km/h

and so on

Three * means you are searching for three separate words. Indeed, both "less than 60" and "spee of 70" contain three words.
This is a straightforward case, because "*" followed by a unit (km/h) push the "*" to be a number.


As far as I know - no. Actually google engine is quite limited - it has to, to be so fast.

https://support.google.com/websearch/answer/2466433?hl=en

Thank you. I haven't found that list. But I think it might be solved by forcing a reasonable number range. As example:
"Engine runs *"-> 150'000 results
"Engine runs 1800..2500" -> 10'000 results and "engine runs" is actually followed by numbers.

Thanks
 
  • #5
The .. operator creates a numeric search range .

eg Cameras £50..£300

Problem is that not much online technical data will be in a suitable format for Google to find .

Using search formats like ' Effect of speed on engine performance ' or ' drag on vehicles at high speed ' will usually generate much more information but you will then have to sift it manually .

http://www.googleguide.com/advanced_operators_reference.html
 
  • #6
The .. operator creates a numeric search range .

eg Cameras £50..£300

Problem is that not much online technical data will be in a suitable format for Google to find .

Using search formats like ' Effect of speed on engine performance ' or ' drag on vehicles at high speed ' will usually generate much more information but you will then have to sift it manually .

http://www.googleguide.com/advanced_operators_reference.html

Thanks,
you're on right and the link is really precious
 

Suggested for: Regular expressions with google web search

Replies
2
Views
691
Replies
10
Views
1K
Replies
11
Views
828
Replies
6
Views
669
Replies
6
Views
725
Replies
2
Views
695
Back
Top