dongtiao2105 2017-03-03 08:21
浏览 140
已采纳

从数组中替换字符串

Currently I have an array

$cop_row = array('first_pulse1', 'second_pulse2');

what I want is to replace first_ & second_ from the cop_row array .

I am using this right now but it is not giving me the required result.

str_replace("first_","",$cop_row);

I am getting output

pulse1second_pulse2

What I want is

pulse1pulse2

Thanks for your concern.

  • 写回答

5条回答 默认 最新

  • dongyi7041 2017-03-03 08:33
    关注

    this will solve your problem.

    php > $x = ['first_pulse', 'second_pulse'];
    php > $q = preg_replace('/(\w+)_/i', '', $x);
    php > print_r($q);
    Array
    (
        [0] => pulse
        [1] => pulse
    )
    php > 
    

    http://php.net/manual/en/function.preg-match.php

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

报告相同问题?

悬赏问题

  • ¥100 房产抖音小程序苹果搜不到安卓可以付费悬赏
  • ¥15 STM32串口接收问题
  • ¥15 腾讯IOA系统怎么在文件夹里修改办公网络的连接
  • ¥15 filenotfounderror:文件是存在的,权限也给了,但还一直报错
  • ¥15 MATLAB和mosek的求解问题
  • ¥20 修改中兴光猫sn的时候提示失败
  • ¥15 java大作业爬取网页
  • ¥15 怎么获取欧易的btc永续合约和交割合约的5m级的历史数据用来回测套利策略?
  • ¥15 有没有办法利用libusb读取usb设备数据
  • ¥15 为什么openeluer里面按不了python3呢?