1

我有一个脚本提供一些 IP 地址的信息。

我想从文本中提取国家。

在以下文本中,国家行是"Country: US"

我想显示:US

正文是:

[Querying whois.arin.net]
[whois.arin.net]
#
# Query terms are ambiguous.  The query is assumed to be:
#     "n 173.194.74.100"
#
# Use "?" to get help.
#

#
# The following results may also be obtained via:
# http://whois.arin.net/rest/nets;q=173.194.74.100?showDetails=true&showARIN=false&ext=netref2
#

NetRange:       173.194.0.0 - 173.194.255.255
CIDR:           173.194.0.0/16
OriginAS:       AS15169
NetName:        GOOGLE
NetHandle:      NET-173-194-0-0-1
Parent:         NET-173-0-0-0-0
NetType:        Direct Allocation
RegDate:        2009-08-17
Updated:        2012-02-24
Ref:            http://whois.arin.net/rest/net/NET-173-194-0-0-1


OrgName:        Google Inc.
OrgId:          GOGL
Address:        1600 Amphitheatre Parkway
City:           Mountain View
StateProv:      CA
PostalCode:     94043
Country:        US
RegDate:        2000-03-30
Updated:        2011-09-24
Ref:            http://whois.arin.net/rest/org/GOGL

OrgTechHandle: ZG39-ARIN
OrgTechName:   Google Inc
OrgTechPhone:  +1-650-253-0000 
OrgTechEmail:  arin-contact@google.com
OrgTechRef:    http://whois.arin.net/rest/poc/ZG39-ARIN

OrgAbuseHandle: ZG39-ARIN
OrgAbuseName:   Google Inc
OrgAbusePhone:  +1-650-253-0000 
OrgAbuseEmail:  arin-contact@google.com
OrgAbuseRef:    http://whois.arin.net/rest/poc/ZG39-ARIN

#
# ARIN WHOIS data and services are subject to the Terms of Use
# available at: https://www.arin.net/whois_tou.html
#
4

5 回答 5

2

使用 preg_match 您可以执行以下操作:

if (preg_match('/^Country:\s*([A-Z]{2,3)$/m', $str, $match)) {
    echo $match[1];
}
于 2012-04-28T13:04:35.810 回答
2

如果它只是您需要的正则表达式 - 试试这个 - 国家 ID 将在第一组

Country:\s*([A-Z]{2})
  • Country:- 匹配文字
  • \s*- 匹配任意数量的空格、制表符等。
  • ([A-Z]{2})- 匹配并捕获任何字母(大写)两次

preg_match_all如果您需要此模式的所有出现,请使用

于 2012-04-28T13:01:35.817 回答
1

有一个用于处理 whois 数据的phpwhois库。它会让你得到一个数组的响应。

于 2012-04-28T13:05:47.337 回答
0

使用 preg_match 提取

preg_match("/Country:(.*)\"/siU", $str, $match);
echo trim($match[1]);
于 2012-04-28T15:46:48.757 回答
0
$regex = "/country:[\ \t\r\n\f][A-Z]+\s/";

$txt = "descr: NCC#200X44704917
country: FR
admin-c: ACPSA223-RIPE
tech-c: TCWQQP8-RIPE";

preg_match($regex, $txt, $result);

print_r($result);

------------------------------------------------
数组 ( [0] => 国家: FR )

于 2016-01-31T18:16:57.477 回答