当前位置:Gxlcms > PHP教程 > 一个很简单的字符串切分有关问题

一个很简单的字符串切分有关问题

时间:2021-07-01 10:21:17 帮助过:3人阅读

一个很简单的字符串切分问题
job***@apple.com
chenghai***@qq.com

让@左边的四个字符替换为 “*”

------解决方案--------------------
PHP code


$str = 'tstkfeacbcs@ss.cds';
echo preg_replace('/.{4}@/', '****@', $str);

//tstkfea****@ss.cds                     

人气教程排行