scan (/\w\w/): \w means Any letter, digit, or underscore
"This is a test".scan(/\w\w/) { |x| puts x }