ASCII Files & regexp

Hi there,

Would someone please tell me what SINGLE regular expression to enter into the ASCII Files dialog to enable ASCII transfers for all files like these:

asdf.qwer.zxcv.a
qwer.asdf.zxcv.b
zxcv.asdf.qwer.c
...
...
...
qwer.asdf.zxcv.z

I've tried a number of variants such as:
*.[a-z]
*.*.*.[a-z]

The only thing that appears to work for me so far is:
*.a
*.b
*.c
etc., etc., etc.

Thanks,
Ken

If I remember my regexp correctly...

.*..*..*.[a-z]