appendIfMissing

appendIfMissing(text: String, suffix: String): String

text​ が ​suffix​ で終了していない場合、​text​ の末尾に ​suffix​ を追加します。

DataWeave バージョン 2.2.0 で導入されました。

パラメーター

名前 説明

text

入力文字列。

suffix

サフィックスとして使用するテキスト。

次の例では、さまざまな入力とサイズでの ​appendIfMissing​ の動作を示します。

ソース

%dw 2.0
import appendIfMissing from dw::core::Strings
output application/json
---
{
  "a": appendIfMissing(null, ""),
  "b": appendIfMissing("abc", ""),
  "c": appendIfMissing("", "xyz") ,
  "d": appendIfMissing("abc", "xyz") ,
  "e": appendIfMissing("abcxyz", "xyz")
}

出力

{
  "a": null,
  "b": "abc",
  "c": "xyz",
  "d": "abcxyz",
  "e": "abcxyz"
}

appendIfMissing(text: Null, suffix: String): Null

appendIfMissing​ を ​null​ 値に使用できるようにするヘルパー関数。

DataWeave バージョン 2.2.0 で導入されました。