php删除" _"从这个背景来看

时间:2014-09-03 19:19:13

标签: php

我有这个文件的文件

<Actions><action_0>extractNumbersFromString</action_0><action_1>extractNumbersFromString</action_1></Actions>

我想从中移除_number

怎么样?

注意

文件未格式化为XML。换句话说,没有&#34;输入&#34;但是所有的文字都是相继的。

1 个答案:

答案 0 :(得分:2)

如果我理解正确......

file_put_contents('your-file-name-here',
  preg_replace('/(attribute|action)_[0-9]+/', '$1',
    file_get_contents('your-file-name-here')
  )
);