gpt4 book ai didi

xml - 检查 XMLType 节点值并在必要时更新

转载 作者:数据小太阳 更新时间:2023-10-29 02:56:21 26 4
gpt4 key购买 nike

我有一个像这样的简单 xml:

<Parameters>
<Parameter>
<Index>0</Index>
<Name>Date</Name>
<Value>@Today</Value>
</Parameter>
<Parameter>
<Index>1</Index>
<Name>Id</Name>
<Value>22</Value>
</Parameter>
</Parameters>

我想遍历每个参数,如果值以“@”开头,则调用一个函数,该函数将值作为参数并返回一个新值。
使用新值更新 xml。
我找到了如何使用 updatexml,但没有运气如何实现我的场景。

最佳答案

您可以通过每个参数节点循环执行此操作,通过函数更改值(我的代码中的内部 CheckXmlValue)-

declare
cur_xml sys_refcursor;
v_val varchar2(3000);
n_val varchar2(3000);
xml_ XMLType := XMLType(
'<Parameters>
<Parameter>
<Index>0</Index>
<Name>Date</Name>
<Value>@Today</Value>
</Parameter>
<Parameter>
<Index>1</Index>
<Name>Id</Name>
<Value>22</Value>
</Parameter>
</Parameters>'
);
function CheckXmlValue(val_ in varchar2) return varchar2 is
begin
return
case lower(val_)
when '@today' then to_char(sysdate, 'dd/mm/yyyy')
when '@yesterday' then to_char(sysdate-1, 'dd/mm/yyyy')
else val_
end;
end;
begin
open cur_xml for
select extractValue(column_value, '//Value') str
from table(XMLSequence(extract(xml_, '/Parameters/Parameter')));
loop
fetch cur_xml into v_val;
n_val := CheckXmlValue(v_val);
exit when cur_xml%notfound;
select updateXml (
xml_,
'//Parameters/Parameter/Value[text()="'||v_val||'"]/text()',
n_val
)
into xml_
from DUAL;
end loop;
close cur_xml;
-- result:
dbms_output.put_line(xml_.extract('*').getStringVal());
end;
/

关于xml - 检查 XMLType 节点值并在必要时更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34153979/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com