注: 以下の翻訳の正確性は検証されていません。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

出力: world


例 3: 基本ケース

引数の値:

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

出力: world


例 4: Nullケース

引数の値:

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

出力: null


例 5: エッジケース

引数の値:

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

出力: Hello world