假设我有一个有效域根列表,
example.com
test.com
和一个变量
String url
我将如何使用正则表达式来验证我的变量 url 是否在列表中,包括子域?
例如,也许我的网址是"subdomain.case.example.com"
也就是说清楚:
我将如何利用正则表达式来验证我的网址是*.example.com
OR *.test.com
OR example.com
OR test.com
?
假设我有一个有效域根列表,
example.com
test.com
和一个变量
String url
我将如何使用正则表达式来验证我的变量 url 是否在列表中,包括子域?
例如,也许我的网址是"subdomain.case.example.com"
也就是说清楚:
我将如何利用正则表达式来验证我的网址是*.example.com
OR *.test.com
OR example.com
OR test.com
?