- Joined
- Jun 14, 2004
- Posts
- 11,076
- Reaction score
- 962
This is a simple PHP SCRIPT which allows the user to extract emails ids from any form of text.This proves really useful when we have a bundle of email ids in a raw format and just want to get into into a database in an orderly fashion.
<?php
//Function to extract the email IDS
function extract_emails($text_content){
//Matching the content of the content file against the email id format
preg_match_all(“/[\._a-zA-Z0-9-]+@[\._a-zA-Z0-9-]+/i”, $text_content, $match_email);
return $ match_email [0];
}
//Getting the content of the test file
$text = file_get_contents(“content.txt”);”;
//Calling the function to extract the email ids
$emails = extract_emails($text);
//Displaying the email ids in individuals lines
print(implode(“\n”, $emails));
?>
<?php
//Function to extract the email IDS
function extract_emails($text_content){
//Matching the content of the content file against the email id format
preg_match_all(“/[\._a-zA-Z0-9-]+@[\._a-zA-Z0-9-]+/i”, $text_content, $match_email);
return $ match_email [0];
}
//Getting the content of the test file
$text = file_get_contents(“content.txt”);”;
//Calling the function to extract the email ids
$emails = extract_emails($text);
//Displaying the email ids in individuals lines
print(implode(“\n”, $emails));
?>