Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 WinHTTP 从返回带有 HTML 实体的源的 URL 获取资源。但是我需要通过用普通的特殊字符替换它们来使文本可读。WinHTTP 中是否有一个选项,或者最快的方法是什么?
遍历返回的 HTML,一次使用和发出一个字符。当您遇到任何需要替换的给定字符时,只需丢弃消耗的字符并发出它的等效替换。这可以通过数组有效地完成:
const char *replacements[256] = { ['<'] = "<", ['>'] = ">" /* etc */ };