.NET 中的同义词翻译
这是一个有点不同的场景。我有一个工具(C#.NET),可以为某个产品网站生成 HTML 内容。基本上它包含产品和描述,以便用户可以订购。我们从相关制造商的网站获取这些描述。 (在他们的批准下)
发生的情况是,当我们在谷歌中搜索此内容时,他们将我们使用的描述识别为非原创,并且搜索结果不会出现在顶部。
有什么方法可以将同义词翻译器之类的东西放入该工具中,以便当我们从制造商复制内容时,内容将随我们数据库中的同义词进行更改。我对此不太确定。如果您有任何想法请在此提出。
谢谢
This is a little bit different scenario. I'm having a tool (C#.NET) which generates HTML content for a certain product site. Basically it contains products and descriptions so that the users can order it. These descriptions we are taking from the relevant manufacturers' sites. (Under their approval)
What happens is when we search this in google they identify the descriptions we have used as NON ORIGINAL and search results are not coming to the top.
Is there any way that we could put something like Synonyms translator into the tool so that while we copy the content from manufacturer the content will be changed with synonyms in our database. I'm not very sure about this. If you have any ideas please deliver here.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有同义词数据库供应商出售具有关联同义词的所有单词的列表。您可以购买列表并执行字符串搜索和搜索。替换操作。
但上下文的准确性并不能100%保证。
There are synonyms database vendors out there selling list of all words with associated synonyms. You can buy the list and perform string search & replace operations.
But the accuracy of the context is not 100% guaranteed.