Guest User

Untitled

a guest
May 26th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. echo preg_replace_callback("/(\w+\.\w+)\s+(.+)/i",create_function('$matches','$out =array_intersect( preg_split("/[^A-Za-z]+/", $matches[2]), array("arabic", "social") );return $matches[1]."\t".(empty($out) ? "non" : implode("\t", $out));'),file_get_contents("test.txt"));
Add Comment
Please, Sign In to add comment