gpt4 book ai didi

php - 替换字符串中最后一次出现的字符

转载 作者:可可西里 更新时间:2023-10-31 22:54:00 27 4
gpt4 key购买 nike

我遇到了一个小问题,正在尝试寻找解决方案。

基本上,假设您有以下字符串:

    $string = 'Hello I am a string';

你希望它以类似下面的内容结束:

    $string = 'Hello I am a string';

简单地说,用一个不间断的空格替换最后一次出现的空格。

我这样做是因为我不希望标题中的最后一个词单独存在。仅仅是因为在标题方面:

 Hello I am a
string

看起来不如

 Hello I am
a string

如何做这样的事情?

最佳答案

代码来自 this example会成功的:

// $subject is the original string
// $search is the thing you want to replace
// $replace is what you want to replace it with

substr_replace($subject, $replace, strrpos($subject, $search), strlen($search));

关于php - 替换字符串中最后一次出现的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5139025/

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