gpt4 book ai didi

substring - 如何用可变数量的前导零填充字符串?

转载 作者:行者123 更新时间:2023-12-02 17:00:21 27 4
gpt4 key购买 nike

我们的 MS Flow - 更新项目任务中有这个公式...

concat(items('Apply_to_each')['T_x002d_Code']
,'-'
,items('Apply_to_each')['BoxNo']
,'-'
,
items('Apply_to_each')['ID'])

但是我们需要在 BoxNo 和 ID 中添加前导零,所以它最终是这样的:

A02-00001-000235

我们也试过:

substring(concat('000000', variables('ItemID'))
, sub(5, length(variables('BoxNo')))
, add(6, length(variables('ItemID'))))

但没有运气。

BoxNo 的值可以从 1 到 99,999,因此我们需要最多填充 4 个前导零

ItemID 可以从 1 到 999,999,因此我们需要最多填充 5 个前导零

我们怎样才能像那样格式化这些字段?

最佳答案

我找到了另一种方法来做到这一点。有 formatNumber 函数。给定一个整数或小数,它将格式化您的数字。如果您使用“0”格式化程序,它将用零替换空格。

这是文档的链接:Format Number documentation

这里还有一个自定义数字格式的链接:custom-numeric-format-strings

因此,例如要用零填充,请使用:

formatNumber([your field],'0000000000')`

这是我的电力自动化流程中的一个示例:

formatNumber(items('Apply_to_each')?['AttorneyID'],'0000000000')

关于substring - 如何用可变数量的前导零填充字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54477985/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com