underscore

DataWeave 2.2 は Mule 4.2 と互換性があり、Mule 4.2 にバンドルされています。 このバージョンの Mule は、拡張サポートが終了する 2023 年 5 月 2 日にその すべてのサポート​が終了しました。

このバージョンの Mule を使用する CloudHub には新しいアプリケーションをデプロイできなくなります。許可されるのはアプリケーションへのインプレース更新のみになります。

標準サポートが適用されている最新バージョンの Mule 4 にアップグレード​することをお勧めします。これにより、最新の修正とセキュリティ機能強化を備えたアプリケーションが実行されます。

underscore(String): String

文字列内のハイフン、スペース、キャメルケースをアンダースコアに置き換えます。

ハイフン、スペース、キャメルケースが存在しない場合、出力は入力と一致します。

パラメーター

名前 説明

text

入力文字列。

次の例では、入力のハイフンとスペースを置き換えます。入力「customer」は、出力で変更されていません。

ソース

%dw 2.0
import * from dw::core::Strings
output application/json
---
{
   "a" : underscore("customer"),
   "b" : underscore("customer-first-name"),
   "c" : underscore("customer NAME"),
   "d" : underscore("customerName")
}

出力

{
   "a": "customer",
   "b": "customer_first_name",
   "c": "customer_name",
   "d": "customer_name"
}

underscore(Null): Null

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