Membership is FREE, giving all registered users unlimited access to every Acorn Domains feature, resource, and tool! Optional membership upgrades unlock exclusive benefits like profile signatures with links, banner placements, appearances in the weekly newsletter, and much more - customized to your membership level!

Script to extract emails

Status
Not open for further replies.

Admin

Administrator
Staff member
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));

?>
 
Status
Not open for further replies.

The Rule #1

Do not insult any other member. Be polite and do business. Thank you!

Members online

Premium Members

New Threads

Domain Forum Friends

Our Mods' Businesses

*the exceptional businesses of our esteemed moderators
General chit-chat
Help Users
  • No one is chatting at the moment.
      There are no messages in the current room.
      Top Bottom