如何正确解码 Google Translate API 答案?

发布于 2024-09-30 10:42:10 字数 219 浏览 3 评论 0原文

我正在与 Google Translate API 进行通信。我可以发送我的请求并得到答复。唯一的问题是一些特殊字符被编码。例如:

时钟”(EN) 将被翻译为“L'horloge”(FR)

API 将向我发送此文本 L\u0026# 39;钟表。如何将此类情况转换为 unicode 字符串?

I'm communicating with the Google Translate API. I can send my request and get an answer. The only problem is that some special characters are encoded. For exemple :

"The clock" (EN) will be translated to "L'horloge" (FR)

The API will send me this text L\u0026#39;horloge. How can I convert such cases into unicode string ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你列表最软的妹 2024-10-07 10:42:10

它是 JSON unicode 和 HTML 编码。

我建议你使用超级对象来解码 JSON:
http://code.google.com/p/superobject/source/浏览/#svn/trunk

uses msxml, HTTPapp, superobject;
var
  xml: IXMLHTTPRequest;
begin
  xml := CoXMLHTTP.Create;
  xml.open('GET', 'http://www.googleapis.com/language/translate/v2?  key=YOURAPIKEYHERE&q=The%20clock&source=en&target=fr', False, EmptyParam, EmptyParam);
  xml.send('');
  Caption := HTMLDecode(SO(xml.responseText)  ['data.translations[0].translatedText'].AsString);
end;

It is JSON unicode and HTML encoding.

I suggest you to get superobject to decode JSON:
http://code.google.com/p/superobject/source/browse/#svn/trunk

uses msxml, HTTPapp, superobject;
var
  xml: IXMLHTTPRequest;
begin
  xml := CoXMLHTTP.Create;
  xml.open('GET', 'http://www.googleapis.com/language/translate/v2?  key=YOURAPIKEYHERE&q=The%20clock&source=en&target=fr', False, EmptyParam, EmptyParam);
  xml.send('');
  Caption := HTMLDecode(SO(xml.responseText)  ['data.translations[0].translatedText'].AsString);
end;
奈何桥上唱咆哮 2024-10-07 10:42:10

您可以使用以下函数对其进行解码:

function unescapeUTF8EscapeSeq($str) {
    return preg_replace_callback("/\\\u([0-9a-f]{4})/i",
        create_function('$matches',
            'return html_entity_decode(\'&#x\'.$matches[1].\';\', ENT_QUOTES, \'UTF-8\');'
        ), $str);
}

如果您愿意,可以此处尝试一下

You can decode them by using the following function:

function unescapeUTF8EscapeSeq($str) {
    return preg_replace_callback("/\\\u([0-9a-f]{4})/i",
        create_function('$matches',
            'return html_entity_decode(\'&#x\'.$matches[1].\';\', ENT_QUOTES, \'UTF-8\');'
        ), $str);
}

If you like, you can try it out here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文