appendIfMissing

appendIfMissing(String, String): String

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

DataWeave 2.2.0 で導入されました。Mule 4.2 以降でサポートされます。

パラメーター

名前 説明

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(Null, String): Null

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