如何获取最后4位数字?

时间:2018-10-29 13:24:38

标签: sapui5

<Label text="{Kostl}"/ >

我需要在这里输入最后4位数字,而不是前导数字。

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以使用formatter method进行此操作(推荐)

<Label text="{ path: 'Kostl', formatter: '.formatter.yourFormatterName' }" />

(不推荐),您可以直接在绑定中设置其格式,如下所示:

<Label text="{= ${Kostl}.substring(4) }" />