Regex Rampage: Hack 3

This is it, folks! The third and final installment of Regex Rampage. By now, you should have mastered the art of regular expressions. But don't get too cocky. There's still plenty of ground to cover.

Back to Hack 2 On to Hack 4
		
		# Find all words that have 5 characters or more
		/^\w{5,}$/g
		
	

Now, let's try something a bit more challenging. What if you wanted to find all words that have exactly 7 characters?

Next up: Hack 4