データ接続と統合Pipeline Builder Expressions開始する

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

Starts with

対応する対象: Batch, Streaming

式のカテゴリー: Boolean, String

引数

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

出力タイプ: Boolean

例 1: 基本ケース

引数の値:

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

出力: false


例 2: 基本ケース

引数の値:

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

出力: true


例 3: 基本ケース

引数の値:

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

出力: true


例 4: Null ケース

引数の値:

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

出力: false


例 5: Null ケース

引数の値:

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

出力: false


例 6: Null ケース

引数の値:

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

出力: false