常用正则表达式
摘要:1、批量替换linux 中的文件名 rename 's/-[0-9]{0,}//' * 2、电话号码 3、邮箱 4、网址 /^(http|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:\~\+#]*[\w\-\@?^=%&\~\+#])?/
阅读全文
posted @
2019-05-17 10:41
阳光小白
阅读(182)
推荐(0) 编辑
匹配 尖括号 中间内容
摘要:$str1 = 'handongyu<b>你好<b><h1>这是一个大写的文件<h1><ff>'; $pattern = '/<[^<>]*>/'; $res = preg_replace($pattern, '替换', $str1);echo $str1;echo "<br/>";print_r(
阅读全文
posted @
2017-07-17 16:53
阳光小白
阅读(325)
推荐(0) 编辑