Search Results for

    Show / Hide Table of Contents

    Class PhonemeUtil

    音素ユーティリティ

    Inheritance
    object
    PhonemeUtil
    Namespace: LibSasara.Model
    Assembly: LibSasara.dll
    Syntax
    public static class PhonemeUtil

    Fields

    CL

    小さい「っ」(促音)の音素。close

    Declaration
    public const string CL = "cl"
    Field Value
    Type Description
    string

    INVALID_PH

    無効音素

    Declaration
    [Obsolete("Use $InvalidPhrase")]
    public const string INVALID_PH = "xx"
    Field Value
    Type Description
    string

    InvalidPhrase

    無効音素

    Declaration
    public const string InvalidPhrase = "xx"
    Field Value
    Type Description
    string

    NASAL_JA

    日本語の鼻音子音音素の正規表現パターン。

    Declaration
    [Obsolete("Use $NasalJapanese")]
    public static readonly Regex NASAL_JA
    Field Value
    Type Description
    Regex

    NOSOUND_VOWELS

    日本語の無声母音音素の正規表現パターン。

    Declaration
    [Obsolete("Use $NoSoundVowels")]
    public static readonly Regex NOSOUND_VOWELS
    Field Value
    Type Description
    Regex

    NO_CONSONANT

    子音でない音素の正規表現パターン。

    Declaration
    [Obsolete("Use $NoConsonant")]
    public static readonly Regex NO_CONSONANT
    Field Value
    Type Description
    Regex

    NasalJapanese

    日本語の鼻音子音音素の正規表現パターン。

    Declaration
    public static readonly Regex NasalJapanese
    Field Value
    Type Description
    Regex

    NoConsonant

    子音でない音素の正規表現パターン。

    Declaration
    public static readonly Regex NoConsonant
    Field Value
    Type Description
    Regex

    NoSoundVowels

    日本語の無声母音音素の正規表現パターン。

    Declaration
    public static readonly Regex NoSoundVowels
    Field Value
    Type Description
    Regex

    PAU

    休符音素。pause

    Declaration
    public const string PAU = "pau"
    Field Value
    Type Description
    string

    SIL

    休符音素。silent

    Declaration
    public const string SIL = "sil"
    Field Value
    Type Description
    string

    VOWELS_JA

    日本語の母音音素の正規表現パターン。無声母音含む

    Declaration
    [Obsolete("Use $VowelsJapanese")]
    public static readonly Regex VOWELS_JA
    Field Value
    Type Description
    Regex

    VowelsJapanese

    日本語の母音音素の正規表現パターン。無声母音含む

    Declaration
    public static readonly Regex VowelsJapanese
    Field Value
    Type Description
    Regex

    Methods

    IsCL(LabLine)

    ラベルの音素が促音かどうか

    Declaration
    public static bool IsCL(LabLine label)
    Parameters
    Type Name Description
    LabLine label
    Returns
    Type Description
    bool

    IsCL(string?)

    促音かどうか

    Declaration
    public static bool IsCL(string? text)
    Parameters
    Type Name Description
    string text
    Returns
    Type Description
    bool

    IsConsonant(LabLine)

    音素が子音かどうか

    Declaration
    public static bool IsConsonant(LabLine label)
    Parameters
    Type Name Description
    LabLine label
    Returns
    Type Description
    bool

    IsConsonant(string?)

    音素が子音かどうか

    Declaration
    public static bool IsConsonant(string? cText)
    Parameters
    Type Name Description
    string cText
    Returns
    Type Description
    bool

    IsNasal(LabLine)

    ラベルの音素が鼻音かどうか

    Declaration
    public static bool IsNasal(LabLine label)
    Parameters
    Type Name Description
    LabLine label
    Returns
    Type Description
    bool

    IsNasal(string?)

    鼻音かどうか

    Declaration
    public static bool IsNasal(string? nText)
    Parameters
    Type Name Description
    string nText
    Returns
    Type Description
    bool

    IsNoSoundVowel(string)

    音素テキストが無声母音か?

    Declaration
    public static bool IsNoSoundVowel(string text)
    Parameters
    Type Name Description
    string text
    Returns
    Type Description
    bool

    IsNoSounds(LabLine)

    ラベル音素が休符音素かどうか

    Declaration
    public static bool IsNoSounds(LabLine label)
    Parameters
    Type Name Description
    LabLine label
    Returns
    Type Description
    bool
    See Also
    IsPau(LabLine)
    IsSil(LabLine)

    IsPau(LabLine)

    ラベルの音素が[pau]かどうか

    Declaration
    public static bool IsPau(LabLine label)
    Parameters
    Type Name Description
    LabLine label
    Returns
    Type Description
    bool
    See Also
    IsSil(LabLine)
    IsNoSounds(LabLine)

    IsSil(LabLine)

    ラベルの音素が[sil]かどうか

    Declaration
    public static bool IsSil(LabLine label)
    Parameters
    Type Name Description
    LabLine label
    Returns
    Type Description
    bool
    See Also
    IsPau(LabLine)
    IsNoSounds(LabLine)

    IsVowel(LabLine)

    ラベルの音素が母音かどうか

    Declaration
    public static bool IsVowel(LabLine label)
    Parameters
    Type Name Description
    LabLine label
    Returns
    Type Description
    bool

    IsVowel(string?)

    音素テキストが母音かどうか

    Declaration
    public static bool IsVowel(string? pText)
    Parameters
    Type Name Description
    string pText
    Returns
    Type Description
    bool
    In this article
    Back to top LibSasara