Pattern.UnicodeCase 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 Java.Util.Regex.RegexOptions enum directly instead of this field.
Enables Unicode-aware case folding.
[Android.Runtime.Register("UNICODE_CASE")]
[System.Obsolete("This constant will be removed in the future version. Use Java.Util.Regex.RegexOptions enum directly instead of this field.", true)]
public const Java.Util.Regex.RegexOptions UnicodeCase = 64;
[<Android.Runtime.Register("UNICODE_CASE")>]
[<System.Obsolete("This constant will be removed in the future version. Use Java.Util.Regex.RegexOptions enum directly instead of this field.", true)>]
val mutable UnicodeCase : Java.Util.Regex.RegexOptions
Field Value
Value = 64- Attributes
Remarks
Enables Unicode-aware case folding. This flag is ignoredon Android. When #CASE_INSENSITIVE
flag is provided, case-insensitive matching is always done in a manner consistent with the Unicode Standard.
The embedded flag (?u)
is ignored.
Specifying this flag may impose a performance penalty.
Java documentation for java.util.regex.Pattern.UNICODE_CASE
.
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.