次の方法で共有


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 ドキュメントjava.util.regex.Pattern.CASE_INSENSITIVE

このページの一部は、Android オープンソース プロジェクトによって作成および共有され、クリエイティブ コモンズ 2.5 属性ライセンスに記載されている条件に従って使用される作業に基づく変更です。

適用対象