我想使用谷歌翻译翻译一个字符串。
我的示例字符串是"this is my string"
.
我想使用 HTML Agility Pack 来解析 HTML 文档。
我试过这个:
using HtmlAgilityPack;
........
var webGet = new HtmlWeb();
var document = webGet.Load(
"http://translate.google.com/#en/bn/this%20is%20my%20string");
var node = document.DocumentNode.SelectNodes(
"//span[@class='short_text' and @id='result_box']");
if (node != null)
{
foreach (var xx in node)
{
x = xx.InnerText;
MessageBox.Show(x);
}
}
但我没有得到任何结果。
我的目标是使用谷歌翻译翻译一个完整的字符串,并在 Windows 窗体的标签中显示翻译后的字符串。
我怎样才能做到这一点?