逃生' \'在Azure数据工厂的动态内容中
我正在使用 ADF 通过 DB2 数据库上的查找活动进行查询。
但是当我执行查询时,“\”计数会加倍。 下面的屏幕截图提供了输出。
正如您在给定的屏幕截图中看到的,“\”计数增加了一倍。 我需要一个解决方案来删除查询中这些额外的“\”。
I am hitting a query through lookup activity on DB2 Database using ADF.
But when I execute the query the '\' count gets double.
The output is provided in the below screenshot.
As you can see in the screenshot given, the '\' count gets double.
I need a solution to remove these extra '\' coming in my query.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下, backslash 逃脱字符
\
在Azure数据工厂使用时会加倍。使用表达式中的替换函数,将双反向斜线替换为单个后挡板。
示例:
@replace('\\ abc \\','\\','\')
By default, backslash escape character
\
gets doubled when used in the Azure data factory.Use replace function in your expression to replace double backslash with single backslash.
Example:
@replace('\\abc\\','\\','\')