注: 以下の翻訳の正確性は検証されていません。AIPを利用して英語版の原文から機械的に翻訳されたものです。

区切り文字の前の文字列

サポートされているモード: Batch, Streaming

最初の区切り文字の前の文字列を抽出します。マッチが見つからない場合は、完全な文字列を返します。

式のカテゴリ: 文字列

引数

  • Delimiter - 区切り文字の正規表現。
    Regex
  • Expression - 説明なし
    Expression<String>
  • Ignore case - 説明なし
    Literal<Boolean>

出力タイプ: String

例 1: 基本ケース

引数の値:

  • Delimiter: hello
  • Expression: ... Hello world
  • Ignore case: false

出力: ... Hello world


例 2: 基本ケース

引数の値:

  • Delimiter: Hello
  • Expression: ... Hello world
  • Ignore case: false

出力: ...


例 3: 基本ケース

引数の値:

  • Delimiter: hello
  • Expression: ... Hello world
  • Ignore case: true

出力: ...


例 4: Nullケース

引数の値:

  • Delimiter: Hello
  • Expression: null
  • Ignore case: false

出力: null