我想使用 informatica 在给定字符串的任何位置检测带有变音符号的拉丁字符。要求是每当我在字符串中的任何位置发现至少一个带有变音符号的拉丁字符时,我都会将输出作为 Fail else pass 给出。
问问题
80 次
2 回答
0
REG_MATCH ( column, pattern ) provides you the proper result.
通过下面的链接了解更多关于正则表达式的信息。
https://marketplace.informatica.com/mpresources/docs/RegularExpressions_2255.pdf
http://www.disoln.org/2012/12/Data-Cleansing-and-Standardization-Using-Regular-Expression-informatica-powercenter.html
于 2019-02-24T13:36:20.397 回答
0
使用一个函数:
REG_MATCH:返回值是否与正则表达式模式匹配。
于 2019-02-22T15:35:19.513 回答