Main Content

corpusLanguage

Detect language of text

Description

UsecorpusLanguageto detect language of text.

The function supports English, Japanese, German, and Korean text.

example

language= corpusLanguage(str)detects the language of the text instr.

Examples

collapse all

Detect the language of a string array of text.

str = ["恋の悩みで 苦しむ。""空の星が輝きを増している。"]; language = corpusLanguage(str)
language = 'ja'

Input Arguments

collapse all

Input text, specified as a string array, character vector, or cell array of character vectors.

Example:["An example of a short sentence."; "A second short sentence."]

Data Types:string|char|cell

Output Arguments

collapse all

Detected language, returned as one of the following:

  • 'en'– Detected English text

  • 'ja'– Detected Japanese text

  • 'de'– Detected German text

  • 'ko'– Detected Korean text

Version History

Introduced in R2018b