Java.Util.Regex.Pattern.CaseInsensitive Field
This constant specifies that a Pattern is matched case-insensitively.

Value: 2

Syntax

[Android.Runtime.Register("CASE_INSENSITIVE")]
[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 CaseInsensitive

Remarks

This constant specifies that a Pattern is matched case-insensitively. That is, the patterns "a+" and "A+" would both match the string "aAaAaA". See Pattern.UnicodeCase. Corresponds to (?i).

[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