StringNormalizationExtensions.IsNormalized Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Gibt an, ob eine Zeichenfolge normalisiert ist.
Überlädt
IsNormalized(String) |
Gibt an, ob sich die angegebene Zeichenfolge in Unicode normalisierungsform C befindet. |
IsNormalized(String, NormalizationForm) |
Gibt an, ob sich eine Zeichenfolge in einer angegebenen Unicode-Normalisierungsform befindet. |
IsNormalized(String)
Gibt an, ob sich die angegebene Zeichenfolge in Unicode normalisierungsform C befindet.
public:
[System::Runtime::CompilerServices::Extension]
static bool IsNormalized(System::String ^ value);
public:
[System::Runtime::CompilerServices::Extension]
static bool IsNormalized(System::String ^ strInput);
public static bool IsNormalized (this string value);
public static bool IsNormalized (this string strInput);
static member IsNormalized : string -> bool
static member IsNormalized : string -> bool
<Extension()>
Public Function IsNormalized (value As String) As Boolean
<Extension()>
Public Function IsNormalized (strInput As String) As Boolean
Parameter
- valuestrInput
- String
Eine Zeichenfolge.
Gibt zurück
true
, wenn sich value
in Normalisierungsform C befindet; andernfalls false
.
Ausnahmen
value
ist null
.
value
enthält ungültige Unicode-Zeichen.
Gilt für:
IsNormalized(String, NormalizationForm)
Gibt an, ob sich eine Zeichenfolge in einer angegebenen Unicode-Normalisierungsform befindet.
public:
[System::Runtime::CompilerServices::Extension]
static bool IsNormalized(System::String ^ value, System::Text::NormalizationForm normalizationForm);
public:
[System::Runtime::CompilerServices::Extension]
static bool IsNormalized(System::String ^ strInput, System::Text::NormalizationForm normalizationForm);
[System.Security.SecurityCritical]
public static bool IsNormalized (this string value, System.Text.NormalizationForm normalizationForm);
public static bool IsNormalized (this string strInput, System.Text.NormalizationForm normalizationForm);
[<System.Security.SecurityCritical>]
static member IsNormalized : string * System.Text.NormalizationForm -> bool
static member IsNormalized : string * System.Text.NormalizationForm -> bool
<Extension()>
Public Function IsNormalized (value As String, normalizationForm As NormalizationForm) As Boolean
<Extension()>
Public Function IsNormalized (strInput As String, normalizationForm As NormalizationForm) As Boolean
Parameter
- valuestrInput
- String
Eine Zeichenfolge.
- normalizationForm
- NormalizationForm
Ein Unicode-Normalisierungsformular.
Gibt zurück
true
, wenn value
in Normalisierungsform normalizationForm
; andernfalls false
.
- Attribute
Ausnahmen
value
ist null
.
value
enthält ungültige Unicode-Zeichen.