in reply to Re: Re: Re: Regular Expression Question
in thread Regular Expression Question

Oop, sorry-- misread your question. If you wanted to check for more than 2 commas, you'd want to use either:
/(\w+[\w,]+\w+)/ && !/,,,/

or this:

if /^(\w+[\w,]+\w+)$/ && !/,{3,}/;