В смысле, тебе нужно вытащить мейл и хэш и сделать их в таком виде - мейл:хэш ? PHP: <?php $data = file_get_contents('data.txt'); preg_match_all("#([a-zA-Z0-9_\.\-]{1,20}@[a-zA-Z0-9\.\-]{1,20}\.[a-zA-Z]{2,4})', '([A-Za-z0-9]{32})',#s", $data, $matches); $fp = fopen('result.txt', 'wb'); for ($i=0; $i<count($matches[1]); $i++) { fwrite($fp, $matches[1][$i] . ":" . $matches[2][$i] . "\r\n"); echo $matches[1][$i] . ":" . $matches[2][$i] . "<br>\r\n"; } fclose($fp); ?>