1. 程式人生 > >PHP結巴程序實現

PHP結巴程序實現

來源 ace 重復 cnblogs repl 留言 結巴 編程 替換

<?php

$str="我...我要要要...學學學..編編程";

$str=preg_replace(‘/\./‘,‘‘,$str);//我我要要要學學學編編程

$str=preg_replace(‘/(.)\1+/u‘,‘$1‘,$str);//我要學編程

echo $str;

?

全部用正則實現。

1.替換 .

2.去掉重復的字

文章來源:劉俊濤的博客

地址:http://www.cnblogs.com/lovebing

歡迎關註,有問題一起學習歡迎留言、評論。

PHP結巴程序實現