如何在dataweave中子字符串

时间:2016-02-23 07:03:59

标签: mule mule-studio dataweave

我在输入中得到一个字段AnnualRevenue,我必须查找条件,如果该字段中有小数,我想将其替换为整数,但如果它不是小数,则通过没有任何转变。可以告诉我如何在mulesoft的数据编织中实现这一点。

4 个答案:

答案 0 :(得分:0)

除了子字符串,您可以通过创建全局MEL函数来使用MEL / java的整数转换,然后在数据编辑表达式中使用它。

<configuration doc:name="Configuration">
    <expression-language>
        <global-functions>
            def removeDecimal(value) {
            return (long) value
            }
        </global-functions>
    </expression-language>
</configuration>

然后在你的dataweave表达式中:

%dw 1.0
%output application/json
---
{
    "result": removeDecimal(-21.83)
}

希望它有所帮助。

干杯

答案 1 :(得分:0)

另一种选择,您可以使用正则表达式:

%dw 1.0
%output application/java
---
{
    result: "123.45" replace /(\.[0-9]*)/ with ""
}

答案 2 :(得分:0)

input:

<employees>
  <employee>
  <name>salumiah-syed</name>
  </employee>
</employees>

%dw 1.0
%output application/xml 
---
result: (payload.employees.employee.name splitBy "-") [0] 

答案 3 :(得分:0)

%dw 1.0
%output application/java
---
{
     value: "123.45",    
     result: ("123.45" as :number) as :string {format: "#"}
}

参考:https://docs.mulesoft.com/mule-runtime/3.9/dataweave-operators#coerce-to-string