The search engine for looking up dates is quite powerful if you know how to use it. As with any search engine if you are too specific it will return nothing. If you are too general it will return everything. Try adding a removing items from your search specification to get the right balance (see the first couple of examples).
To get hyperlinking select the hyperlink option in the pulldown menu.
| Month | Day | Year | AD/BC | Must Contain: | Action | |
|---|---|---|---|---|---|---|
| Feb | 4 | Any | ignored | Returns a list of events that happened on Feb 4 | ||
| Feb | 4 | 1981 | ignored | United States | NO RESULTS Returns no results because it is too specific | |
| Any | Any | Any | ignored | important events | NO RESULTS since there is no event that contains the string "important events"' | |
| Any | Any | 1990-2000 | ignored | NO RESULTS since there is no year called "1990-2000". A year generally has 4 digits or less. This has 8 digits and a dash. You can pattern match a year however. See below. | ||
| Feb | 4 | Any | ignored | sporting events | NO RESULTS returns events that have the exact character string "sport events" in them. It does not match the catagory "sporting events". | |
| Any | Any | Any | ignored | sports | Returns a list of events that that contain the substring "sports". It does not match the subject sports. If you want to know about football, baseball, or curling you might search for one of those substrings. | |
| Mar | Any | Any | ignored | New Zealand | Find all events concerning New Zealand that happened in March | |
| Oct | 3 | Any | ignored | Find all events occurring on October 3rd | ||
| Any | Any | 1912 | AD | Find all events occurring in the year 1912 | ||
| Dec | 31 | Any | ignored | is born | Find all people born on Dec 31 (I use "is born" for births and "dies" for deaths) | |
| Any | Any | Any | ignored | Oregon | Find all events containing the string Oregon | |
| Any | Any | Any | ignored | disco\b | Find all events related to disco (the \b means word boundary so that you won't also match more popular words like dicovery and discovers.) | |
| Any | Any | Any | ignored | henry v\b | Find all events related to Henry V but not Henry VI, Henry VII, Henry VIII | |
| Any | Any | Any | ignored | \bbridge\b | Matches exactly the word bridge but not Loyd Bridges or Cambridge | |
| Any | Any | 11.. | AD | The period means any character so this finds all events occurring in the 1100's | ||
| Oct | Any | 19.. | AD | Find all events that happened in October in the 1900's | ||
| Any | Any | 18.. | AD | Japan | Find all events containing the string "japan" that happened in the 1800's | |
| Any | Any | .. | BC | The two periods mean any two characters, in this case, any two digit year. The BC puts it in the 90 years from 99 BC to 10 BC. | ||
| Any | Any | Any | ignored | Japan.*fish | The period after Japan in content matches any character and the star says match zero or more of them. So this says find all events containing the word "Japan" followed by zero or more of any chacter followed by the word "fish". | |
| Any | Any | Any | ignored | becomes the \d+.. state | Looks for when states entered the United States. Actually matches the string "becomes the " followed by one or more digits followed by any two characters to absorb the ordinal suffix followed by the string " state" |
Jul 16 1889, "Shoeless" Joe Jackson, baseball player known for barefooted playing, is born
because "baseball" was in the entry, but you won't get:
Oct 13 1903, The first world series game is played
which didn't contain the word "baseball".
| copyright (c) Robert Heckendorn 1990-2008, All rights Reserved | Send comments, suggestions, corrections, new dates |