doubomudichen0832 2014-08-23 12:43
浏览 129
已采纳

在php中将substr_replace与str_replace结合使用

What I am trying to do is to replace a specific string with another only if found in a certain position.

php:

$substr = substr_replace($string, $replacement, $stringstart);
$str = str_replace($quoted, $replacement, $str);

I plan to replace $string with $replacement in the string $str but only after $stringstart characters.

I also have $stringend. If I could also use that(because I know exactly the length of $replacement), it would be great. This is optional though

  • 写回答

1条回答 默认 最新

  • dou44364983 2014-08-23 13:19
    关注

    I think this is what you are looking for:

    $strToSearch="There is no need searching here. The search need to start here";
    echo str_replace("need to start","started",substr($strToSearch, 32, strlen($strToSearch)));
    

    This will produce the result:

    "The search started here"
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部