在 Azure 数据工厂 v2 中查找字符串长度

Find String Length in Azure Data Factory v2

我从 ADFv2 开始,在尝试找出字符串的长度时遇到了问题。虽然门户网站说 length('abc') 应该可以,但实际上并没有用。解决方法是什么?

PFB 错误快照:

如果变量是字符串类型,只需将值转换为字符串:https://docs.microsoft.com/en-us/azure/data-factory/control-flow-expression-language-functions#string

string(length('abc'))

希望对您有所帮助!