Brand spanking new to Regex in Rails so please be gentle... I found the following on Regexlib.com to validate no spaces.
^[a-zA-Z]+$
But when I put it into
validates_format_of :first_name, :with => ^[a-zA-Z]+$
I get an error saying unexpected tCARET. What's the problem?