スクリプトを使用して 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();
}
}
}
これに関して親切に助けてください。すべての国の電話番号で機能する正規表現が必要です...plz