I am using a regular expression to limit words entered in a textbox field to 250-500 words.
(((^\s*)*\S+\s+)|(\S+)){250,500}
Since I know little to nothing about regular expressions, I had copied it from another website. I get the validation error regardless of how many words are entered.
Here is the page that the form is on, if you wish to try it for yourself:
http://mlknew.timpecoraro.com/dreamers-community/win-a-dream/
The site is running Wordpress with the cforms plugin, thus I can only use regular expressions for validation.
Thanks for any help!