在字符串中用双引号后替换引号

时间:2017-02-21 09:27:30

标签: php regex

我有以下字符串:

<something=""Some" random string"  somethingelse="Another "random" string">

我需要将其更改为

<something="&quot;Some&quot; random string"  somethingelse="Another &quot;random&quot; string">

基本上保留“外部”引号并将其中的引号更改为&quot;

我认为可能会使用一些正则表达式,但我不确定逻辑应该是什么。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

使用

echo '<something='.chr(34).'Some'.chr(34).' random string"  somethingelse="Another "random" string">';

例如:

你可以试试这个:echo chr(34).'Some'.chr(34).' random string';

"Some" random string

Ascii Table for Quotes and different elements