常用正则表达式

winterSky 2020-02-26 PM 1067℃ 0条

1.校验字符串是否是数字或者2位小数

$str = '1.33';
$reg = "/^(([1-9][0-9]*)|(([0]\.\d{1,2}|[1-9][0-9]*\.\d{1,2})))$/";
$res = preg_match($reg,$str);
//合格 1 不匹配 0
Base::dump($res);

2.JS开发工具函数
https://zhuanlan.zhihu.com/p/113385396?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io

标签: none

非特殊说明,本博所有文章均为博主原创。

评论啦~