Heim >Backend-Entwicklung >PHP-Tutorial >php利用正则表达式删除字符串里的重复元素

php利用正则表达式删除字符串里的重复元素

PHP中文网
PHP中文网Original
2017-03-30 17:29:101831Durchsuche

php利用正则表达式删除字符串里的重复元素:

编写代码如下:

<?php
  $str="我...我要要要...学学学..编编程";
  $str=preg_replace(&#39;/\./&#39;,&#39;&#39;,$str);
  $str=preg_replace(&#39;/(.)\1+/u&#39;,&#39;$1&#39;,$str);
  echo $str;

输出的结果就是:

我要学编程

以上就介绍了 php利用正则表达式删除字符串里的重复元素,包括了方面的内容,更多相关内容请关注PHP中文网(www.php.cn)!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn