我想问是否有人知道如何使用 regexp_replace 删除 pl/sql 中单引号之间的字符。
会是这样。
The 'quick brown' fox jumps over the lazy dog.
--> The fox jumps over the lazy dog.
The
'quick
brown'
fox jumps over
'the lazy' dog.
--> The fox jumps over dog.
我想问是否有人知道如何使用 regexp_replace 删除 pl/sql 中单引号之间的字符。
会是这样。
The 'quick brown' fox jumps over the lazy dog.
--> The fox jumps over the lazy dog.
The
'quick
brown'
fox jumps over
'the lazy' dog.
--> The fox jumps over dog.
使用 'n' 到 REGEXP_REPLACE 的“匹配参数”选项告诉它让“匹配任何字符”字符(句点)包含换行符:
select regexp_replace('The ''quick
brown'' fox jumps over the lazy dog', '''.*''', '', 1, 0, 'n')
from dual;
https://docs.oracle.com/cd/B28359_01/server.111/b28286/functions137.htm#SQLRF06302