dongzhanyan3667 2015-08-08 22:11
浏览 78
已采纳

如何在分隔符内分解子分隔符?

I have this string:

text example (some text) (usb, apple (fruit), computer (technology), nature: sky)

I need this var_dump() output with explode "(":

array(3) {
  [0]=>
  string(34) "text example"
  [1]=>
  string(12) "some text"
  [2]=>
  string(12) "usb, apple, computer, nature: sky"
}
  • 写回答

1条回答 默认 最新

  • dsjojts9734 2015-08-08 22:29
    关注

    You can use php function preg_replace() with regex pattern to remove the text you don't want to be presented in output and after that use the explode function :

    $string = 'text example (some text) (usb, apple (fruit), computer (technology), nature: sky)';
    
    //Remove (fruit) and (technology) from string 
    $newString = preg_replace('/ \((\w+)\)/i', ', ', $string);
    
    //Explode with new string
    $output = explode(" (",$newString);
    
    //Remove ')' from output
    var_dump(preg_replace('/\)/i', '', $output));
    

    Result :

    array(3) { 
      [0]=> string(12) "text example" 
      [1]=> string(9) "some text" 
      [2]=> string(35) "usb, apple, computer, nature: sky" 
    }
    

    Hope this will help.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#c语言#的问题:构成555单稳态触发器,采用LED指示灯延时时间,对延时时间进行测量并显示(如楼道声控延时灯)需要Proteus仿真图和C语言代码
  • ¥50 神舟笔记本,没有linux的驱动,装的Ubuntu系统,想把风扇速度调到最大
  • ¥15 workstation加载centos进入emergency模式,查看日志报警如图,怎样解决呢?
  • ¥50 如何用单纯形法寻优不能精准找不到给定的参数,并联机构误差识别,给定误差有7个?matlab
  • ¥15 workstation加载centos进入emergency模式,查看日志报警如图,没有XFS,怎样解决呢?
  • ¥15 应用商店如何检测在架应用内容是否违规?
  • ¥15 Ubuntu系统配置PX4
  • ¥50 nw.js调用activex
  • ¥15 数据库获取信息反馈出错,直接查询了ref字段并且还使用了User文档的_id而不是自己的
  • ¥15 将安全信息用到以下对象时发生以下错误:c:dumpstack.log.tmp 另一个程序正在使用此文件,因此无法访问