Have three exp that i need to combine into one

W

wizardontherun

Iam trying to search an email body to remove all html tags and spaces
then check for a word, to clean up some spam. they

~ s/^\s+//;

s/<[a-zA-Z\/][^>]*>//g;

~ s/ //g;

then if search match on like "spamword" i can dump the email

Iam using symantec mail security.

..
 
J

Jürgen Exner

Iam trying to search an email body to remove all html tags

Why are you doing it the hard way instead of the following the advice in the
FAQ:
perldoc -q HTML: "How do I remove HTML from a string?"

jue
 
I

it_says_BALLS_on_your forehead

Iam trying to search an email body to remove all html tags and spaces
then check for a word, to clean up some spam. they

~ s/^\s+//;

s/<[a-zA-Z\/][^>]*>//g;

~ s/ //g;

in many cases, separating the regex logic into multiple regexes is more
efficient.
 
T

Tad McClellan

Subject: Have three exp that i need to combine into one


Why do you need to combine them into one regex?

Iam trying to search an email body to remove all html tags


perldoc -q "remove HTML"

How do I remove HTML from a string?

and spaces
then check for a word,


I surely don't know what would qualify as a "word" when all
spaces have been removed...

~ s/^\s+//;

s/<[a-zA-Z\/][^>]*>//g;

~ s/ //g;

then if search match on like "spamword"


It would match on a string like this:

thereisaspamwordinthisstring

Is that what you would want it to do?

Iam using symantec mail security.


We are using Perl.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,338
Messages
2,571,783
Members
48,589
Latest member
puppyslingcarrier

Latest Threads

Top