dongnianwo8289 2017-05-03 11:11
浏览 298

PHP将某个字符后的字符串删除到字符之前

$text= "This is a text1 i want to replace before # text2 i want to replace 
before # text3"

Start point ="text1"
End point = "#"
Replace= "@@@@@@"

Note "i want to replace before" is changeable sentence Result will be "This is a @@@@@@ text2 i want to remove before # text3"

  • 写回答

1条回答 默认 最新

  • doucheng1063 2017-05-03 11:46
    关注

    This is what you want

    $mystring = "This is a text1 i want to replace before # text2 i want to replace before # text3";
    
    $start = "text1";
    $end = "#";
    $replace= "@@@@@@";
    
    $pos1 = strpos($mystring, $start);
    $pos2 = strpos($mystring, $end, $pos1);
    
    $length=$pos2+ strlen($end) - $pos1;
    
    $result = substr_replace($mystring,$replace,$pos1,$length);
    echo $result;
    

    What I have done here is find the string positions. $pos1 & $pos2 are the the positions of your start and ending string.

    Then calculated the length between those two strings where strlen($end) is the length of your ending string (so that we can grab the end string also).

    Finally just used the regular substr_replace function.

    Hope this helps you.

    评论

报告相同问题?

悬赏问题

  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类