Regular expression revision
This post has a few regular expression challenges which are intended to help me revise. They start very easy and tend to get a bit harder as you go on.
- Match both ‘stationary’ and ‘stationery’
- Match any single lowercase letter
- Match any single letter or number
- Match the word ‘Go’ but only if it is at the beginning of a text
- Match the word ‘Stop’ but only if it is at the end of a text
- Match the word ‘cap’ when it is a whole word to as in ‘My new cap is cool’ to but not within other words (such as cappuccino or inescapable)
- Match the letters ‘car’ when its appears in the work ‘scarub’ but not in the word ‘scarce’
- Match all instances of ‘Wales, England, Scotland’ in ‘Wales and England are south of Scotland, which is north of England, which is east of Wales’
- Write a regular expression that matches any date where the day, month and year are the same (as in 12/12/2012)
- Write a short regular expression that will match any number with 99 digits.
- Write a regular expression that will match a pair of
<div>
tags. The contents of which can be anything to including other tags to and which will certainly be followed by another<div>
tag (hint to it should not be greedy) - Write a regular expression that finds all URLs in a document and converts them into hyperlinks. for example,
http://www.google.com
should be converted to<a href="http://www.google.com">http://www.google.com</a>