我想通过我的脚本在 Google 中搜索电话号码......所以我需要一些正则表达式来搜索字符串或 html 中每个国家的电话号码......我尝试了以下正则表达式,但它不起作用......`
private string findphone(string source)
{
string my = "";
string phone = "";
string MatchPhoneNumberPattern3 = @"\D(\d{3}\s\d{3}\s\d{4})\D";
MatchCollection mathph3 = Regex.Matches(source, MatchPhoneNumberPattern3);
foreach (Match match4 in mathph3)
{
foreach (Capture capture in match4.Captures)
{
if (my.ContainsKey(capture.Value) == false)
{
phone = capture.Value.ToString();
}
}
}
请帮我解决这个问题,我想要一个适用于每个国家电话号码的正则表达式......请