UnicodeSet.SimpleCaseInsensitive Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 = 6Implements
- 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.