大气宝马

文章
4
资源
0
加入时间
2年10月17天

匹配IP地址正则表达式 2020-09-23

匹配ip地址正则表达式记录下自己写的版本python3pycharmimport reip = r'((1?[1-9][0-9]?|2[0-4][0-9]|25[0-5]|100)\.){3}(1?[1-9][0-9]?|2[0-4][0-9]|25[0-5]|100)'a = re.search(ip, 'xxsf255.12.5.1ssss')# 如果可以匹配成功if a: print(a.group())else: print('ip not exis

spring boot 核心配置文件是什么?

spring boot 核心配置文件是什么?Spring Boot 有两种类型的配置文件,application 和 bootstrap 文件Spring Boot会自动加载classpath目前下的这两个文件,文件格式为 properties 或 yml 格式*.properties 文件是 key=value 的形式*.yml 是 key: value 的形式*.yml 加载...

原型对象里面的this指向问题

1. 原型对象里面的this指向的是对象实例function Star(name,age){ this.name = name; this.age = age; } var that; Star.prototype.song = function (){ that = this console.log("I can sing!!!!") } let zy = new Star("卓

PHP简洁函数小结

PHP简洁函数 主题:类菌体PHP简洁函数 简述:PHP简单明了函数语法 适合人群:对开源社区感兴趣,对php感兴趣