Pattern.CaseInsensitive フィールド

定義

注意事項

This constant will be removed in the future version. Use Java.Util.Regex.RegexOptions enum directly instead of this field.

大文字と小文字を区別しない照合を有効にします。

[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.", true)]
public const Java.Util.Regex.RegexOptions CaseInsensitive = 2;
[<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.", true)>]
val mutable CaseInsensitive : Java.Util.Regex.RegexOptions

フィールド値

Value = 2
属性

注釈

大文字と小文字を区別しない照合を有効にします。

大文字と小文字を区別しない照合は、Android では Unicode 対応です。

大文字と小文字を区別しない照合は、埋め込みフラグ式 (?i) を使用して有効にすることもできます。

このフラグを指定すると、パフォーマンスが若干低下する可能性があります。

java.util.regex.Pattern.CASE_INSENSITIVEJava ドキュメント。

このページの一部は、によって作成および共有された作業に基づく変更であり、に記載されている条件に従って使用されます。

適用対象