Page 1 of 1

Mail Cleanser.

Posted: 15 Oct 2010 01:21
by SkyFrontier
This one is aimed to get rid of any "me@myhouse.com" sequence, present in clipboard content. Job done, it'll pop a window with the output and get that info available in clipboard, too.
Secure your and your clients'/friend's privacy with XY!

Code: Select all

   $a = <clipboard>;
   status "Please wait: retrieving info...", BF0000, progress;
   $a = regexreplace($a, "(\w[-._\w]*\w@\w[-._\w]*\w\.\w{2,3})", "private mail");
   copytext $a;
   text $a;
   status "Info ready in clipboard, too!";