字段为空时如何替换字段的值?

how to replace value of field when field is empty?

在我的左侧架构中,有时对于 StartTime 我们将没有任何价值。一些有效值的例子是:

1200
1320
2100
0900

当输入为空时,只需 <StartTime></StartTime> 我想要的输出是午夜,或者 <StartTime>0000</StartTime>

我知道我可以通过常规脚本 functoid 来做到这一点,但这是否可以在没有代码的情况下完成?

是否有 functoid 可以简单地用其他内容替换字段的原始内容,从而允许进一步处理?

当然,只需使用 Length+Equal/Logical Not/Value 映射函数的组合来传递接收到的值 (Length != 0) 或 0000 (Length = 0)。

长度 -> 大于 (0) -> 值 Mapping/Source -> 目标

--和--

[长度 -> 大于 (0)] -> 逻辑非 -> ValueMapping/“0000” -> 目标