Link to home
Start Free TrialLog in
Avatar of Naveed_Manzoor
Naveed_ManzoorFlag for Canada

asked on

PHP Regular Expression

I have a string having data in html format. This data is actually will be emails  . I have a class for converting html to text. Before converting this in text, I need to eliminate few things for which I need regular expression. Am using PHP.

I need to eliminate following things
1:All new lines should replaced with (dot/full stop) . sign
2:  Fwd and replied emails have Date , from a, subject and To fields. If need such complete block to be eliminated from string.
3: All formats like "--- On Sat, 6/27/09, aqeel chishti <chishtiaaa@hotmail.com> wrote:" and "Date: Saturday, June 27, 2009, 10:05 PM" should be eliminted .
4: Foter advertisements should be eliminated.

All these four points may be repeating several time in one string . So all should be eliminated. Below is an example of data in string .


Date: Tue, 30 Jun 2009 01:35:02 -0700
From: cyber_searchnaz@yahoo.com
Subject: Fw: Read it if YOU LOVE
To: farah_cyber@yahoo.com; saqib_ali1234@yahoo.com; sshanshah@hotmail.com; shariq.cybersearch@yahoo.com; naveedm@yahoo.com; osp_786@hotmail.com



--- On Sat, 6/27/09, aqeel chishti <chishtiaaa@hotmail.com> wrote:


    From: aqeel chishti <chishtiaaa@hotmail.com>
    Subject: Read it if YOU LOVE
    To: "Aamir Jamil" <jamilaamir@hotmail.com>, "ADEEL CHISHTI" <caddesigner007@hotmail.com>, "ADIL JAMIL" <adil_dds@hotmail.com>, "adnan mubeen" <eamubeen1@gmail.com>, anzarulhaq@hotmail.com, "ASIF ZAFAR" <mirzaasifzafar@mail.com>, "atif muhammad" <atif165@hotmail.com>, "BILAL CHISHTI" <slowwhisperer@hotmail.com>, "Fazal Bhai London" <khan_fazal@hotmail.com>, "IMRAN HADDI TRAVEL" <immimubijee@hotmail.com>, "Jibran Chishti" <jibran.a.chishti@hotmail.com>, "Kamran Latif" <mklsohawa@hotmail.com>, "MOHD NAEEM" <mohdnaeem2007@hotmail.com>, "munawar agha" <agha61@hotmail.com>, "NADEEM PRIVATE ANWAR" <anwer.nadeem@piac.aero>, "Najam Imtiaz" <najjo4@yahoo.com>, "NASIR ALI" <nasirali_pk@hotmail.com>, nasirhasan4u@hotmail.com, "RAHEEL MEMON" <rapid007@hotmail.com>, "RASHID BERLAS" <rashidbarlas_b@hotmail.com>, "sadaf naz" <cyber_searchnaz@yahoo.com>, "SAQIB SALEEM" <saqibkhawaja@hotmail.com>, "shafqat bukhari" <sasbukhari@yahoo.com>, "SHAHID HABIB SHAHID HABIB" <shahid54600@yahoo.com>, "Shazad Khan Bank Alhabib" <skhan@bankalhabib.com>, "SOHAIL IMRAN" <dreamnetzone@yahoo.com>, "WASEEM PIA KHAN" <waseem.khan@piac.aero>, "tabish hasan" <aliali925@hotmail.com>, "ZULFI JEDDAH" <zulfiqarali@jamjoompharma.com>, "zeshan pia zeshan pia" <lookphilogymist@hotmail.com>
    Date: Saturday, June 27, 2009, 10:05 PM




        IF YOU ARE A TRUE
         
         READ THIS!
         
         
         
            * These days Wives dont look after their Husbands

            * Girls go round without being covered
            * Children no longer respect their parents or any orders
            * The Rich do not look after the poor, they also don't give gifts or money and they also do not fulfil zakaat. he also said to


        Thank you very much for your time
         

        Invite your mail contacts to join your friends list with Windows Live Spaces. It's easy! Try it!
        See all the ways you can stay connected to friends and family
        See all the ways you can stay connected to friends and family
        What can you do with the new Windows Live? Find out
        See all the ways you can stay connected to friends and family
        check out the rest of the Windows Live". More than mailWindows Live" goes way beyond your inbox. More than messages
        Invite your mail contacts to join your friends list with Windows Live Spaces. It's easy! Try it!
        Microsoft brings you a new way to search the web. Try Bing" now




    Microsoft brings you a new way to search the web. Try Bing" now
    check out the rest of the Windows Live". More than mailWindows Live" goes way beyond your inbox. More than messages


    check out the rest of the Windows Live". More than mailWindows Live" goes way beyond your inbox. More than messages



Avatar of thinkingman2
thinkingman2
Flag of United States of America image

Check this one:
$toBeDeleted = array(
	"~^(Date|From|Subject|To|Other-Headers|More-Headers):.*$~",
	"^.*Microsoft brings you a new way to.*$",
	"^.*Yahoo is your friend.*$",
	"^.*partial snippet of other footer texts here.*$",
	"^.*more partial snippet of other footer texts here.*$",
);
 
//stuff you want to delete goes in the above array
$messages = preg_replace($toBeDeleted,'',$messages);
 
//replace one or more newlines of either mac, windows or unix with a '.'
//if you don't want it to replace more than two returns with one dot, get rid of the + in the expression below
//do this last because the above expression will generate lots of empty lines
$messages = preg_replace("~[\r\n]+~",'.',$messages);

Open in new window

Avatar of Naveed_Manzoor

ASKER

I use this code and getting this eror.

Warning: preg_replace() [function.preg-replace]: No ending delimiter '^' found in C:\xampp\htdocs\imap\test.php on line 133.


      $toBeDeleted = array(
                  "~^(Date|From|Subject|To|Other-Headers|More-Headers):.*$~",
                  "^.*Microsoft brings you a new way to.*$",
                  "^.*Yahoo is your friend.*$",
                  "^.*partial snippet of other footer texts here.*$",
                  "^.*more partial snippet of other footer texts here.*$",
      );
$msgBody = preg_replace($toBeDeleted,'',$msgBody);
$msgBody = preg_replace("~[\r\n]+~",'.',$msgBody);
Sorry, left out the delimiters in the array above, here's a corrected snippet below.
$toBeDeleted = array(
        "~^(Date|From|Subject|To|Other-Headers|More-Headers):.*$~",
        "~^.*Microsoft brings you a new way to.*$~",
        "~^.*Yahoo is your friend.*$~",
        "~^.*partial snippet of other footer texts here.*$~",
        "~^.*more partial snippet of other footer texts here.*$~",
);
 
//stuff you want to delete goes in the above array
$messages = preg_replace($toBeDeleted,'',$messages);
 
//replace one or more newlines of either mac, windows or unix with a '.'
//if you don't want it to replace more than two returns with one dot, get rid of the + in the expression below
//do this last because the above expression will generate lots of empty lines
$messages = preg_replace("~[\r\n]+~",'.',$messages);

Open in new window

Check the attache code snipet. Its not working ...
<?php
$msgBody = 'Date: Tue, 30 Jun 2009 01:35:02 -0700
From: cyber_searchnaz@yahoo.com
Subject: Fw: Read it if YOU LOVE
To: farah_cyber@yahoo.com; saqib_ali1234@yahoo.com; sshanshah@hotmail.com; shariq.cybersearch@yahoo.com; naveedm@yahoo.com; osp_786@hotmail.com
 
 
 
--- On Sat, 6/27/09, aqeel chishti <chishtiaaa@hotmail.com> wrote:
 
 
    From: aqeel chishti <chishtiaaa@hotmail.com>
    Subject: Read it if YOU LOVE
    To: "Aamir Jamil" <jamilaamir@hotmail.com>, "ADEEL CHISHTI" <caddesigner007@hotmail.com>, "ADIL JAMIL" <adil_dds@hotmail.com>, "adnan mubeen" <eamubeen1@gmail.com>, anzarulhaq@hotmail.com, "ASIF ZAFAR" <mirzaasifzafar@mail.com>, "atif muhammad" <atif165@hotmail.com>
    Date: Saturday, June 27, 2009, 10:05 PM
 
 
 
 
        This is only content we nee to dispplay.
';
 
$toBeDeleted = array(
        "~^(Date|From|Subject|To|Other-Headers|More-Headers):.*$~",
        "~^.*Microsoft brings you a new way to.*$~",
        "~^.*Yahoo is your friend.*$~",
        "~^.*partial snippet of other footer texts here.*$~",
        "~^.*more partial snippet of other footer texts here.*$~",
);
$msgBody = preg_replace($toBeDeleted,'',$msgBody);
$msgBody = preg_replace("~[\r\n]+~",'.',$msgBody);
echo $msgBody; 
?>

Open in new window

Strange& no reason for it not to. Will reexamine.
Played around with it because it's a script I will use. Don't have the time to finish this now, but if you finish it, please post your findings:
$toBeDeleted = array(
        "~[\n\r]*[\s>*](Date|From|Subject|To|Cc|Bcc|More-Headers):[^\r\n]+($|[\r\n])~i",
        "~^--+.+$~",
        "~^.*Microsoft brings you a new way to.*$~",
        "~^.*Yahoo is your friend.*$~",
        "~^.*partial snippet of other footer texts here.*$~",
        "~^.*more partial snippet of other footer texts here.*$~",
);
$msgBody = preg_replace("~[\r]+~","\n\n\n\n",$msgBody);
$msgBody = preg_replace($toBeDeleted,'!!!"""!!!',$msgBody);
//$msgBody = preg_replace("~[\r\n]+~",'.',$msgBody);
$msgBody = preg_replace("~[\r\n]+[\s^\r\n]+[\r\n]+~","\r",$msgBody);
$msgBody = preg_replace("~[\r\n]+[\s^\r\n]+[\r\n]+~",'.',$msgBody);
echo "<pre>{$msgBody}</pre>"; 

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Naveed_Manzoor
Naveed_Manzoor
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial