使用 power automate 始终将字符串转换为整数
convert string in integer all the time with power automate
我正在使用 power automate 从邮件中解析 table。我只需要获取 table 的最后一项。我设法获取了这个特定的行并将其存储到一个变量中。
但是我无法将其转换为整数。
我的数据可以采用多种形式,例如:480 000 或仅 0 或 -0,03 或 452 000,23。
我只想将字符串转换为整数,以便对之后的数据进行一些逻辑测试。
此致,
凯尔0
只需使用表达式函数 int(yourstringproperty)
将字符串值转换为整数。
当你的数字表示被格式化后,你可能需要做一些额外的转换:
int(replace(replace(yourstringproperty, " ", ""), ",", "."))
我正在使用 power automate 从邮件中解析 table。我只需要获取 table 的最后一项。我设法获取了这个特定的行并将其存储到一个变量中。
但是我无法将其转换为整数。
我的数据可以采用多种形式,例如:480 000 或仅 0 或 -0,03 或 452 000,23。
我只想将字符串转换为整数,以便对之后的数据进行一些逻辑测试。
此致,
凯尔0
只需使用表达式函数 int(yourstringproperty)
将字符串值转换为整数。
当你的数字表示被格式化后,你可能需要做一些额外的转换:
int(replace(replace(yourstringproperty, " ", ""), ",", "."))