Pattern.Multiline フィールド

定義

注意事項

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

複数行モードを有効にします。

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

フィールド値

Value = 8
属性

注釈

複数行モードを有効にします。

複数行モードでは、式 ^$ は、それぞれ行ターミネータまたは入力シーケンスの末尾の直後または直前に一致します。 既定では、これらの式は入力シーケンス全体の先頭と末尾でのみ一致します。

複数行モードは、埋め込みフラグ式 (?m) を使用して有効にすることもできます。

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

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

適用対象