Pattern.Dotall フィールド

定義

注意事項

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

dotall モードを有効にします。

[Android.Runtime.Register("DOTALL")]
[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 Dotall = 32;
[<Android.Runtime.Register("DOTALL")>]
[<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 Dotall : Java.Util.Regex.RegexOptions

フィールド値

Value = 32
属性

注釈

dotall モードを有効にします。

dotall モードでは、式 . は行終端記号を含む任意の文字と一致します。 既定では、この式は行終端記号と一致しません。

ドットオール モードは、埋め込みフラグ式 (?s) を使用して有効にすることもできます。 s(は、Perl で呼び出される "単一行" モードのニーモニックです。

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

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

適用対象