dongpai1942 2016-11-09 13:47
浏览 76
已采纳

如何在php中使用preg_match删除特定的字符串

I need to remove the v. from the vairable how can i do that ?

$variable='v.vm_name,p.companyid';

Expected Output

$variable='vm_name,companyid';

how can i achive this using preg_match or preg_replace something.

The value will be dynamic something like this

 $variable='b.vm_name,tt.companyid';
  • 写回答

2条回答 默认 最新

  • dongxiezhuo8852 2016-11-09 13:56
    关注

    Try this:

    $newstr = preg_replace("/(?:\w\.|\w\w\.)/", "$2", $variable);
    

    It will remove one or two leading chars and a dot.

    Or simply : $newstr = preg_replace("/(?:\w+\.)/", "$2", $variable);

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

报告相同问题?

悬赏问题

  • ¥15 C++ 如何判断设置快捷键来实现隐藏/显示窗口
  • ¥15 关于#材料工程#的问题:有没有具有电子阻挡层和空穴阻挡层的电池仿真silvaco代码例子或者其他器件具有阻挡层例子的silvaco代码(最好还有相关文献)
  • ¥60 基于MATLAB的TAOD算法
  • ¥15 Groimp使用疑问
  • ¥15 MDK–ARM里一直找不到调试器
  • ¥15 oracle中sql查询问题
  • ¥15 vue使用gojs3.0版本,在nodeDataArray中的iconSrc使用gif本地路径,展示出来后动画是静态的,不是动态的
  • ¥100 代写个MATLAB代码,有偿
  • ¥15 ansys electronics 2021 R1安装报错,错误代码2,如图
  • ¥15 Dev-c++打字不出现中文,但出现日文