2

我一直在互联网上搜索解决方案,但找不到。

我需要删除字符串中的重复字符,但还想包含一个异常以允许整数数量的字符重复/保留在字符串中。

例如,我尝试了以下操作:

$str = 'This ----------is******** a bbbb 999-999-9999 ******** 8888888888 test 4444444444 ********##########Sammy!!!!!! ###### hello !!!!!!';

$t1 = preg_replace('/(.)\1{3,}/','',$str);
$t2 = preg_replace('/(\S)\1{3,}/','',$str);
$t3 = preg_replace('{(.)\1+}','$1',$str);
$t4 = preg_replace("/[;,:\s]+/",',',$str);
$t5 = preg_replace('/\W/', '', $str);
$t6 = preg_replace( "/[^a-z]/i", "", $str);

echo '$t1 = '.$t1.'<br>';
echo '$t2 = '.$t2.'<br>';
echo '$t3 = '.$t3.'<br>';
echo '$t4 = '.$t4.'<br>';
echo '$t5 = '.$t5.'<br>';
echo '$t6 = '.$t6.'<br>';

结果:

$t1 = This is a 999-999- test Sammy hello 
$t2 = This is a 999-999- test Sammy hello 
$t3 = This -is* a b 9-9-9 * 8 test 4 *#Samy! # helo !
$t4 = This,----------is********,a,bbbb,999-999-9999,********,8888888888,test,4444444444,********##########Sammy!!!!!!,######,hello,!!!!!!
$t5 = Thisisabbbb99999999998888888888test4444444444Sammyhello
$t6 = ThisisabbbbtestSammyhello

所需的输出将是:

This ---is*** a bbbb 999-999-9999 *** 8888888888 test 4444444444 ***###Sammy!!! ### hello !!!

如您所见,所需的输出只留下数字,只留下 3 个重复字符,即 --- ### * !!!

如果可能,我希望能够将异常从 3 更改为任何其他整数。

提前致谢。

4

2 回答 2

3

这将做到:

preg_replace('/(([^\d])\2\2)\2+/', '$1', $str);

[^\d]匹配不是数字的单个字符。
\2指捕获的数字
$1指的是第一个捕获的组,它将是前三个重复字符,因此多余\2+的被剥离。

键盘

于 2012-05-25T21:48:52.340 回答
0

您正在寻找的正则表达式:/((.)\2{2})\2*/ 如果您需要异常n,请放入n-1花括号{n-1}/((.)\2{n-1})\2*/

编辑:对于非数字或你什么,.用其他东西代替,例如[^\d]等。/(([^\d])\2{2})\2*/

于 2012-05-25T21:56:52.413 回答