|
when you put the "^" inside the brackets, that meanse NOT. so your expression would NOT match a-z, -, and '
try this:
/^[a-z\-\,\'](\,.*\,)$/
i'm not 100% on if all those characters need to be escaped, but that should at least get you on the right track.
__________________
Mike
|