Normalizer2.IsNormalized Method

Definition

Overloads

IsNormalized(ICharSequence)

Tests if the string is normalized.

IsNormalized(String)

Tests if the string is normalized.

IsNormalized(ICharSequence)

Tests if the string is normalized.

[Android.Runtime.Register("isNormalized", "(Ljava/lang/CharSequence;)Z", "GetIsNormalized_Ljava_lang_CharSequence_Handler", ApiSince=24)]
public abstract bool IsNormalized (Java.Lang.ICharSequence? s);
[<Android.Runtime.Register("isNormalized", "(Ljava/lang/CharSequence;)Z", "GetIsNormalized_Ljava_lang_CharSequence_Handler", ApiSince=24)>]
abstract member IsNormalized : Java.Lang.ICharSequence -> bool

Parameters

s
ICharSequence

input string

Returns

true if s is normalized

Attributes

Remarks

Tests if the string is normalized. Internally, in cases where the quickCheck() method would return "maybe" (which is only possible for the two COMPOSE modes) this method resolves to "yes" or "no" to provide a definitive result, at the cost of doing more work in those cases.

Java documentation for android.icu.text.Normalizer2.isNormalized(java.lang.CharSequence).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

IsNormalized(String)

Tests if the string is normalized.

public bool IsNormalized (string? s);
member this.IsNormalized : string -> bool

Parameters

s
String

input string

Returns

true if s is normalized

Remarks

Tests if the string is normalized. Internally, in cases where the quickCheck() method would return "maybe" (which is only possible for the two COMPOSE modes) this method resolves to "yes" or "no" to provide a definitive result, at the cost of doing more work in those cases.

Java documentation for android.icu.text.Normalizer2.isNormalized(java.lang.CharSequence).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to