Translate strings from one language to another

版本 1.4.0.1 (627.2 KB) 作者: Varun Gandhi
TRANSLATE uses translate.google.com to translate a string from one language to another
1.1K 次下载
更新时间 2016/9/1

查看许可证

There are two files in this submission. The first one is the MATLAB function translate.m and the other one is an example app (googleTranslateExample.m) that shows you how one can use translate.
%TRANSLATE uses Google(r)'s free web service at translate.google.com to translate
%a string from one language to another.
%
% Usage:
% translate('thank you', 'ja') - translates the first argument to Japanese
% translate('merci', 'ja', 'fr') - translate the first argument from french to Japanese
% translate('thank you') - translate the first argument from English to German
%
% Inputs:
% Arg1: stringToBeTranslated - char array or cell array of strings to be translated
% - Required
% Arg2: toLanguage - Language to be which 'stringToBeTranslated' will be translated
% - Optional
% - Default - 'de'(German)
% Arg3: fromLanguage - Language in which 'stringToBeTranslated' is specified
% - Optional
% - Default - 'en'(English)
%
% Output: Translated string returned by Google(r)
% Output is of the same type as the input 'stringToBeTranslated' - Char array or cell array of string
% Output is not translated if internet is not available of something went wrong with the query to Google.
%
%
%
% See also googleTranslateExample

引用格式

Varun Gandhi (2024). Translate strings from one language to another (https://www.mathworks.com/matlabcentral/fileexchange/49566-translate-strings-from-one-language-to-another), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2014b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Characters and Strings 的更多信息
致谢

参考作品: Google(R) Translate

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.4.0.1

Updated license

1.4.0.0

Updated screenshots and code cleanup