猿问
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
用PHP写一个类,实现输入字符串"abbccdddd",输出为"1a2b3c4d"
用PHP写一个类,实现输入字符串"abbccdddd",输出为"1a2b3c4d"
Helenr
浏览 533
回答 2
2回答
交互式爱情
preg_replace_callback('/(.)(\1*)/', function($match){return mb_strlen($match[0]).$match[1];}, 'abbcccdddd');
0
0
0
智慧大石
function processStr($str = "abbcccdddd"){ $result = ''; while(strlen($str) > 0){ $tempStr = substr($str,0,1); $result .= substr_count($str, $tempStr).$tempStr; $str = str_replace($tempStr,'',$str); } return $result; }
0
0
0
打开App,查看更多内容
随时随地看视频
慕课网APP
相关分类
PHP
php如何把参数放在Http Request Heade????
1 回答
继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续