1

我有一个文本文档,其中列出了带有主题和电子邮件地址的 url。我需要提取所有带有主题和电子邮件地址的 url,并将其全部放入 csv 文件中。我只需要知道如何使用正则表达式来做到这一点。目前我能够提取所有网址,但我需要与它们关联的电子邮件和主题。到目前为止,这是我正在使用的:

$file=file_get_contents('/data/urls.txt');
$pattern='([A-Za-z][A-Za-z0-9+.-]{1,120}:[A-Za-z0-9/](([A-Za-z0-9$_.+!*,;/?:@&~=-])|%   [A-Fa-f0-9]{2}){1,333}(#([a-zA-Z0-9][a-zA-Z0-9$_.+!*,;/?:@&~=%-]{0,1000}))?)';
preg_match_all($pattern, $file, $matches);

$matches=array_unique($matches[0]);

print_r($matches);

文件结构:

主题:网址

电子邮件:someemail@email.com

来源网址:http ://www.google.com

4

2 回答 2

1

这个正则表达式怎么样?

$pattern='/(Subject: (.*)\n\nEmail: (.*)\n\nSource URL: (.*))/';
于 2010-07-27T13:23:18.690 回答
1

这样的事情可能对您有用,这取决于您如何将“独特”一词应用于您的输入。

// reformat file
$pattern = '/Subject: (.*)[\n\r]+Email: (.*)[\n\r]+Source URL: (.*)[\n\r]*/';
$replace = '$1, $2, $3'."\n";
$output = preg_replace($pattern, $replace, $input);

// filter unique
$arr = explode("\n", $output);
$arr = array_unique($arr);

// output
$f = fopen('path.csv', 'w');
foreach($arr as $a) {
    fwrite($f, $a);
}
fclose($f);
于 2010-07-27T14:33:25.487 回答