JapanesePhoneticAnalyzer.GetWords メソッド

定義

オーバーロード

GetWords(String)

漢字とひらがな文字の組み合わせである日本語の文字列を読み取り、単語区切りを含む文字列から適切な読み取りのコレクションを返します。

GetWords(String, Boolean)

漢字とひらがな文字の組み合わせである日本語の文字列を読み取り、単語区切りを含む文字列から適切な読み取りのコレクションを返します。 必要に応じて、"Mono Ruby" 戦略を使用して、複数の漢字単語を複数の漢字単語に分割します。

GetWords(String)

漢字とひらがな文字の組み合わせである日本語の文字列を読み取り、単語区切りを含む文字列から適切な読み取りのコレクションを返します。

public:
 static IVectorView<JapanesePhoneme ^> ^ GetWords(Platform::String ^ input);
/// [Windows.Foundation.Metadata.Overload("GetWords")]
 static IVectorView<JapanesePhoneme> GetWords(winrt::hstring const& input);
[Windows.Foundation.Metadata.Overload("GetWords")]
public static IReadOnlyList<JapanesePhoneme> GetWords(string input);
function getWords(input)
Public Shared Function GetWords (input As String) As IReadOnlyList(Of JapanesePhoneme)

パラメーター

input
String

Platform::String

winrt::hstring

漢字とひらがな文字の組み合わせである日本語の文字列。

この文字列の最大長は 100 文字です。

戻り値

文字列からの適切な読み取りを単語区切りで表す JapanesePhoneme オブジェクトのコレクション。

属性

こちらもご覧ください

適用対象

GetWords(String, Boolean)

漢字とひらがな文字の組み合わせである日本語の文字列を読み取り、単語区切りを含む文字列から適切な読み取りのコレクションを返します。 必要に応じて、"Mono Ruby" 戦略を使用して、複数の漢字単語を複数の漢字単語に分割します。

public:
 static IVectorView<JapanesePhoneme ^> ^ GetWords(Platform::String ^ input, bool monoRuby);
/// [Windows.Foundation.Metadata.Overload("GetWordsWithMonoRubyOption")]
 static IVectorView<JapanesePhoneme> GetWords(winrt::hstring const& input, bool const& monoRuby);
[Windows.Foundation.Metadata.Overload("GetWordsWithMonoRubyOption")]
public static IReadOnlyList<JapanesePhoneme> GetWords(string input, bool monoRuby);
function getWords(input, monoRuby)
Public Shared Function GetWords (input As String, monoRuby As Boolean) As IReadOnlyList(Of JapanesePhoneme)

パラメーター

input
String

Platform::String

winrt::hstring

漢字とひらがな文字の組み合わせである日本語の文字列。

この文字列の最大長は 100 文字です。

monoRuby
Boolean

bool

単語区切り戦略 "Mono Ruby" の使用を指定します。 true の場合、単語区切り戦略 "Mono Ruby" が使用されます。 「モノルビ」は、より積極的に複数の漢字単語を複数の漢字単語に分割しようとします。

false の場合、"Mono Ruby" は使用されません。

戻り値

文字列からの適切な読み取りを単語区切りで表す JapanesePhoneme オブジェクトのコレクション。

属性

こちらもご覧ください

適用対象