Home > Backend Development > PHP Tutorial > 正则表达式过滤延续重复3次以上的字符串

正则表达式过滤延续重复3次以上的字符串

WBOY
Release: 2016-06-13 12:01:08
Original
2881 people have browsed it
MyException - 代码迷
首页
  • Web开发
  • Android
  • J2EE
  • PHP
  • Linux/Unix
  • MySql
  • C#
  • 更多...
当前位置: 代码迷 » PHP » 正则表达式过滤延续重复3次以上的字符串

正则表达式过滤延续重复3次以上的字符串

www.MyException.Cn,网友分享于:2014-06-30   浏览:6次
正则表达式过滤连续重复3次以上的字符串
如字符串:abcdeeeddsssddaacc,,,bbbb人民网人人人
获取结果:abcdeddsddaacc,b人民网人

PHP代码求解
------解决思路----------------------
$s = 'abcdeeeddsssddaacc,,,bbbb人民网人人人'; //原始串<br />$t = 'abcdeddsddaacc,b人民网人'; //目标串<br />echo $r = preg_replace('/(.+)\1{2,}/', '$1', $s); //结果串<br /><br />var_dump($t == $r); //对比一下
Copy after login
abcdeddsddaacc,b人民网人
bool(true)
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template