gpt4 book ai didi

php - 用php替换字符串中的所有其他字符

转载 作者:行者123 更新时间:2023-12-03 23:04:19 24 4
gpt4 key购买 nike

在 php 中有没有一种快速的方法可以将字符串中的所有其他字符(非空格)替换为其他字符?我四处搜索,但没有找到解决方案。

像这样:

    $str = "This is my example string!"

最后是这样的:

    $result = "T*i* i* m* e*a*p*e s*r*n*!

最佳答案

简单的preg_replace()解决方案:

$str = "This is my example string!";
$result = preg_replace('/(\S)\S/', '$1*', $str);

print_r($result);

输出:

T*i* i* m* e*a*p*e s*r*n*!

  • \S - 代表非空白字符

关于php - 用php替换字符串中的所有其他字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48869199/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com