Odd regexp problem

I’m doing a registration snip that contains both client side and server side validation for a few items… I’ve run into a problem with the Regexp class in flash and I was wondering if anyone could clarify a few things.

This is the pattern I’m controlling against;


var controlPattern:RegExp = /	(\w|[_.\-])+	@	((\w|-)+\.)+	\w{2,4}+	/x;

For some reason, people are telling me it’s reporting some email addresses as invalid although I can’t for my life understand why. Got any ideas of ‘real’ addresses that would test false to that expression? I can’t :m: