例如,我有字符串:
<Url class="class">http://www.ccc.com/Files/thumbnails/Gone Dark.jpg</Url>
我想将 url 标记内的所有空格替换为 %20
<Url class="class">http://www.ccc.com/Files/thumbnails/Gone%20Dark.jpg</Url>
请注意,空间 in<Url class="class">
保持不变,而空间 inGone Dark.jpg
已更改为Gone%20Dark.jpg
编辑:这些值在 SQL 数据库中,我需要对它们进行编码。这REPLACE(path, strPtrn, strDst)
还不够强大(或者我认为)。