Java.Util.Regex.Pattern.UnicodeCase Field
This constant specifies that a Pattern that uses case-insensitive matching will use Unicode case folding.

Value: 64

Syntax

[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.")]
public const RegexOptions UnicodeCase

Remarks

This constant specifies that a Pattern that uses case-insensitive matching will use Unicode case folding. On Android, UNICODE_CASE is always on: case-insensitive matching will always be Unicode-aware. If your code is intended to be portable and uses case-insensitive matching on non-ASCII characters, you should use this flag. Corresponds to (?u).

[Android Documentation]

Requirements

Namespace: Java.Util.Regex
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1