> I need a regular expression that will only match filenames with > NO periods in them. My attempts so far don't seem to work at > all, in the least. Can someone give me a hint, please?
Something like this should work: /[^\.]*/ Perhaps overly simplistic (as it doesn't check anything else), but it simply says 0 or more of any character except a period. Jon ____________________ BYU Unix Users Group http://uug.byu.edu/ ___________________________________________________________________ List Info: http://uug.byu.edu/cgi-bin/mailman/listinfo/uug-list
