stalker_cop |
с ней aMatch вообще непонятки какие то. нехера она не находит почему не знаю |
Это ты неразобравшийся хрен, а не "она нехера не находит":
declare
string varchar2(32767);
components owa_text.vc_arr;
i int := 1;
begin
string := 'select * from d_article where id = :article_id and qq = :qq';
loop
i := owa_pattern.amatch(string, i , '[^:]*(:\w+)', components);
exit when i = 0;
if components.count != 0 then
for i in components.first .. components.last loop
dbms_output.put_line(components(i));
end loop;
end if;
end loop;
end;
/