If I have a string named link, how would I go about checking to see if it follows the same format as a wikipedia URL? To clarify, wikipedia URLs (in this case) always begin with en.wikipedia.org/wiki/ They can have any character (including # signs and apostrophes after the /wiki/ and spaces are indicated with underscores. Also, they can have a word in parenthesis, for example: en.wikipedia.org/wiki/Sesame_Street(Elmo's_World). For example, if the string link looked like "en.wikipedia.org/wiki/Sesame_Street(Elmo's_World", that wouldn't match since there is no closing parenthesis. Thanks!