我正在使用 Oracle 11.g 程序。我发现这个例子REGEXP_REPLACE
只有两个参数(输入和模式)。它有效,但不是最佳的。我正在尝试使用REGEXP_REPLACE
以循环出现在文本base64 之后和文本“ />之前出现的特定文本字符串的可变数量,
我可以让它只出现一次,但我不能使其正确循环。
Declare p_html clob;
l_image_clob clob;
l_image_count number;
Begin
p_html := '<p>Some header text base64,one start here and then this is the end one" /></p><p>Some header text base64,two start here and then this is the end two" /></p>';
l_image_count := REGEXP_COUNT(p_html, 'base64', 1, 'i');
If l_image_count > 0 Then
For i In 1..l_image_count Loop
l_image_clob := REGEXP_REPLACE(p_html, '(.*base64,)|(" />.*)');
dbms_output.put_line(l_image_clob);
-- code to process each occurrence individually.
End Loop;
End If;
End;
我希望看到的数据结果是:
one start here and this is the end one
two start here and this is the end two
上面的示例返回:
two start here and this is the end two
two start here and this is the end two
我已经尝试了几个选项,REXEXP_REPLACE
但我似乎无法让它与变量一起使用i
。