Pattern.UnicodeCase フィールド

定義

注意事項

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

Unicode 対応の大文字と小文字の折りたたみを有効にします。

[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

フィールド値

Value = 64
属性

注釈

Unicode 対応の大文字と小文字の折りたたみを有効にします。 このフラグは Android では無視されます。 フラグが指定されている場合 #CASE_INSENSITIVE 、大文字と小文字を区別しない照合は、常に Unicode 標準と一致する方法で行われます。

埋め込みフラグ  (?u) は無視されます。

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

の Java ドキュメント java.util.regex.Pattern.UNICODE_CASE

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

適用対象