データ接続と統合Pipeline Builder Expressions終わりに

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

Ends with

対応環境: Batch, Streaming

式カテゴリ: Boolean, String

引数

  • Expression - 説明なし
    Expression<String>
  • Ignore case - 大文字と小文字を区別するかどうかを決定するBoolean。
    Literal<Boolean>
  • Value - 説明なし
    Expression<String>

出力型: Boolean

例 1: 基本ケース

引数の値:

  • Expression: Hello World
  • Ignore case: false
  • Value: world

出力: false


例 2: 基本ケース

引数の値:

  • Expression: Hello World
  • Ignore case: false
  • Value: World

出力: true


例 3: 基本ケース

引数の値:

  • Expression: Hello World
  • Ignore case: true
  • Value: world

出力: true


例 4: Nullケース

引数の値:

  • Expression: null
  • Ignore case: false
  • Value: null

出力: false


例 5: Nullケース

引数の値:

  • Expression: null
  • Ignore case: false
  • Value: World

出力: false


例 6: Nullケース

引数の値:

  • Expression: Hello World
  • Ignore case: false
  • Value: null

出力: false