Get emails from each docx file in directory using php -


this question has answer here:

hi, making job portal in user upload multiple resumes contain emails , phone numbers there way email .docx file using php

first u must read docx file.please refer reading doc file in php

then using

$emailreg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/; $match = preg_match($emailreg, $your_text); 

the matches give desired output.


Comments

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -