Android URL 匹配规则 - shaoxing.com.cn
匹配规则:Android http|https//:(.*?).shaoxing.com.cn
解析:
- Android:匹配字符串中必须包含 'Android'。
- http|https//:匹配字符串中必须包含 'http://' 或 'https://'
- : 匹配冒号
- (.*?): 匹配任意字符,且重复出现0次或多次,直到遇到第一个冒号为止,将匹配到的结果保存在捕获组中。
- shaoxing.com.cn:匹配字符串中必须包含 'shaoxing.com.cn'。
原文地址: https://www.cveoy.top/t/topic/olY5 著作权归作者所有。请勿转载和采集!