gpt4 book ai didi

azure - 如何从 Azure 数据工厂中具有动态长度的字符串中删除最后三个字符?

转载 作者:行者123 更新时间:2023-12-05 09:37:09 30 4
gpt4 key购买 nike

我在 Azure 数据工厂 (v2) 中有一个字符串变量,我想从中删除最后 3 个字符。最初我以为使用子字符串操作,它需要startIndex和length参数。然而,startIndex 可能会有所不同,因为字符串没有固定长度。关于如何解决这个问题有什么建议吗?

示例,删除最后 3 个字符,字符串长度不同:

'abcdef' -> 'abc'
'helloworld' -> 'hellowo'
'2020_18' -> '2020'

最佳答案

  1. 我们可以使用length函数获取字符串的长度。

  2. 然后我们可以使用substring函数,表达式如 substring('String',0, length-3) .

  3. 在 ADF 中,我们可以使用表达式 @substring('helloworld',0,sub(length('helloworld'),3))删除最后 3 个字符

关于azure - 如何从 Azure 数据工厂中具有动态长度的字符串中删除最后三个字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64562652/

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