doubu4406 2015-01-18 17:25
浏览 43
已采纳

在PHP中修剪字符串中的HTML标记

Why is that trim() returns i>abc</i instead of <i>abc</i> when using trim($string, "<br />") on the string below?

$string = "  <br />   <br /> <i>abc</i>  <br /> <br />   </br>";

I wanted to remove all <br /> tags from the beginning and end of the string considering that there might be some whitespaces in between <br> tags.

Any suggestions or workarounds?

  • 写回答

3条回答 默认 最新

  • dora1989 2015-01-18 17:28
    关注

    The second parameter to trim isn't a string as such, more a list of chars you want to strip from the start and end of the string. So, you're telling to strip all leading and trailing <, >, \, b and r characters.

    Could try something like this regex to strip what you want from the front and end of a string...

    //trim from start
    $str=preg_replace('{^(?:<br />|</br>|\s+)+}', '', $str);
    //trim from end
    $str=preg_replace('{(?:<br />|</br>|\s+)+$}', '', $str);
    

    Just to break down that first one...

    • I've used {} to delimit my regex, just so I don't need to escape the matches on backslashes which I'd have to if I used the 'normal' // delimiter
    • ^ anchors the match to the start of the string
    • (?: ) is just a group of things we want to look for
    • inside the group, we match either <br />, </br> or any whitespace sequence \s+ - you can see each of these patterns is separated by | to indicate each is a possible alternative match
    • the group is followed by + to indicate we want to find one or more matches of that group

    The second one is similar, but anchored to the end of the string with $

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥50 寻找一位有逆向游戏盾sdk 应用程序经验的技术
  • ¥15 请问有用MZmine处理 “Waters SYNAPT G2-Si QTOF质谱仪在MSE模式下采集的非靶向数据” 的分析教程吗
  • ¥50 opencv4nodejs 如何安装
  • ¥15 adb push异常 adb: error: 1409-byte write failed: Invalid argument
  • ¥15 nginx反向代理获取ip,java获取真实ip
  • ¥15 eda:门禁系统设计
  • ¥50 如何使用js去调用vscode-js-debugger的方法去调试网页
  • ¥15 376.1电表主站通信协议下发指令全被否认问题
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥15 复杂网络,变滞后传递熵,FDA