regexp_replace()
现在让我们使用以下查询检查 regexp_replace(string text, pattern text, replacement text) 函数。
查询
default> select regexp_replace('abcdef', '(ˆab|ef$)', ‘–‘);
上述查询将生成以下结果。
–cd–
查询替换与给定正则表达式模式匹配的子字符串。
apache_tajo_string_functions.html
现在让我们使用以下查询检查 regexp_replace(string text, pattern text, replacement text) 函数。
default> select regexp_replace('abcdef', '(ˆab|ef$)', ‘–‘);
上述查询将生成以下结果。
–cd–
查询替换与给定正则表达式模式匹配的子字符串。
apache_tajo_string_functions.html
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。