duanfangfei5558 2015-11-22 10:25
浏览 39
已采纳

PHP使用特定模式从末尾拆分字符串

i have these string that have combination of hospital and cities. i want to split and get only the hospital name.

ABC Hospital (rawalpindi)
ABC Hospital (New) (Rawalpindi)
XYZ Hospital (old) (Lahore)

I want to split the string from end is such a way that output should be.

ABC Hospital
ABC Hospital (New)
XYZ Hospital (old)
  • 写回答

2条回答 默认 最新

  • dougou6727 2015-11-22 10:39
    关注

    Utilizing substring to make a smaller string with the last position of " ".

    substr($s1, 0, strripos($s1," "));
    

    With a sample code:

    $s1 = "ABC Hospital (rawalpindi)";
    $s2 = "ABC Hospital (New) (Rawalpindi)";
    $s3 = "XYZ Hospital (old) (Lahore)";
    
    echo substr($s1, 0, strripos($s1," "));
    echo substr($s2, 0, strripos($s2," "));
    echo substr($s3, 0, strripos($s3," "));
    

    This will produce the output:

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

报告相同问题?

悬赏问题

  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题
  • ¥15 帮我写一个c++工程
  • ¥30 Eclipse官网打不开,官网首页进不去,显示无法访问此页面,求解决方法
  • ¥15 关于smbclient 库的使用
  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?