Share via


UnicodeSet.SimpleCaseInsensitive Field

Definition

Caution

This constant will be removed in the future version. Use Android.Icu.Text.UnicodeSetOptions enum directly instead of this field.

Enable case insensitive matching.

[Android.Runtime.Register("SIMPLE_CASE_INSENSITIVE", ApiSince=36)]
[System.Obsolete("This constant will be removed in the future version. Use Android.Icu.Text.UnicodeSetOptions enum directly instead of this field.", true)]
public const Android.Icu.Text.UnicodeSetOptions SimpleCaseInsensitive = 6;
[<Android.Runtime.Register("SIMPLE_CASE_INSENSITIVE", ApiSince=36)>]
[<System.Obsolete("This constant will be removed in the future version. Use Android.Icu.Text.UnicodeSetOptions enum directly instead of this field.", true)>]
val mutable SimpleCaseInsensitive : Android.Icu.Text.UnicodeSetOptions

Field Value

Value = 6

Implements

Java.Lang.IIterable._members Java.Lang.IIterable.cb_forEach_ForEach_Ljava_util_function_Consumer__V Java.Lang.IIterable.cb_spliterator_Spliterator_Ljava_util_Spliterator_
Attributes

Remarks

Enable case insensitive matching. Same as #CASE_INSENSITIVE but using only Simple_Case_Folding (scf) mappings, which map each code point to one code point, not full Case_Folding (cf) mappings, which map some code points to multiple code points.

This is designed for case-insensitive matches, for example in certain regular expression implementations where only Simple_Case_Folding mappings are used, such as in ECMAScript (JavaScript) regular expressions.

This value is an options bit set value for some constructors, applyPattern(), and closeOver(). It can be ORed together with other, unrelated options.

Java documentation for android.icu.text.UnicodeSet.SIMPLE_CASE_INSENSITIVE.

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