我有理由在所有标签名称中用下划线替换标点字符(请不要问我为什么它与问题无关)。
与此问题相关的是我想:
<data:data>
<another:data>Content</another:data>
<another:data>Content</another:data>
<another:data>Content</another:data>
<another:data attribute="attr : content">This content should : not be affected</another:data>
<another:data><![CDATA[This content should : not be affected]]></another:data>
</data:data>
替换为:
<data_data>
<another_data>Content</another_data>
<another_data>Content</another_data>
<another_data attribute="attr : content">This content should : not be affected</another_data>
<another_data><![CDATA[This content should : not be affected]]></another_data>
</data_data>
但使用php
执行此操作的最佳方法是什么?
我知道regex
不是解析html
或xml
的正确方法,但我担心我在我的情况下使用preg_replace()
是因为DOMDocument()
无法读取我的~250K行的错误结构化命名空间提供的xml内容。提供的xsd文件(~25个方案)已经过时(现在为6年),内容提供商不愿意解决这个问题。
我发现用SimpleXMLElement()
替换:
后_
有效。
答案 0 :(得分:2)
您可以捕获Filter::iterator
和<
之间的内容,然后将>
替换为:
,如下所示:
_
输出:
$string = "<data:data>
<another:data:data>Content:</another:data>
<another:data>:Content</another:data>
<another:data>Content</another:data>
<another:data><![CDATA[This content should : not be affected]]>Content</another:data>
</data:data>";
$regex = '~<[^!][^>]*>~';
$replaced = preg_replace_callback(
$regex,
function($m) { return str_replace(':', '_', $m[0]);},
$string);
echo $replaced;
答案 1 :(得分:1)
如果您不使用属性,则此代码适用于您:
$string = preg_replace_callback(
'#</?[\w:]+>#',
function ($match) {
list($tag) = $match;
return str_replace(':', '_', $tag);
},
$string
);
如果您确实使用了属性,请查看:How do I change XML tag names with PHP?
答案 2 :(得分:0)
你的意思是:
$string = "<data:data>
<another:data>Content</another:data>
<another:data>Content</another:data>
<another:data>Content</another:data>
<another:data>Content</another:data>
</data:data>";
$string = str_replace(':', '_', $string);
或
$string = str_replace('another:data', 'another_data', $string);
<强> 更新 强>
也许您可以尝试以下方法:
$replace = array('another:data' => 'another_data', '/another:data' => '/another_data'); // So you can easily add more strings to replace
strtr($string, $replace);
链接:http://php.net/strtr。我刚发现这个,所以不知道这是否适合你。
答案 3 :(得分:0)