Elvar wrote: > Perhaps my regexp skills are too weak. Can someone verify if what I have > should be working and if not, possibly what regexp will work? The > following is what I have in my redre.txt > > ^Subject: NDN:.* > > That did not catch the following... > > Subject: NDN: Make part time extra money from home > > Any ideas? > >
First off remove the * from the end of the RegEx, thats very bad. Second, try this one: ---------- subject:.*?NDN: ---------- FYI I put stuff like this in my NPRe. Kevin ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Assp-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/assp-user
