我有这个文件的文件
<Actions><action_0>extractNumbersFromString</action_0><action_1>extractNumbersFromString</action_1></Actions>
我想从中移除_number
。
怎么样?
文件未格式化为XML。换句话说,没有&#34;输入&#34;但是所有的文字都是相继的。
答案 0 :(得分:2)
如果我理解正确......
file_put_contents('your-file-name-here',
preg_replace('/(attribute|action)_[0-9]+/', '$1',
file_get_contents('your-file-name-here')
)
);