我有
"这是样本文本。需要提取<>smth1<>和<>smth2<>以及许多其他文本。"在oracle数据库的一列中。我需要得到:
样品smth1smth2
有什么帮助吗?
尝试创建此函数:
create or replace
Function GetSurroundedText (origStr varchar2, openingStr varchar2, closingStr varchar2, outputSep varchar2)
Return Varchar2
Is
continue boolean := true;
l_string Varchar2(2000) := origStr;
startPos PLS_Integer;
endPos PLS_Integer;
openingStrPos PLS_Integer;
res Varchar2(2000) := '';
sep Varchar2(100) := outputSep;
Begin
While true
Loop
openingStrPos :=Instr(l_string, openingStr);
If openingStrPos > 0 Then
startPos := openingStrPos + Length(openingStr);
l_String := Substr(l_string, startPos);
else
exit;
end if;
endPos := Instr(l_string, closingStr);
if endPos > 0 Then
if res = '' Then
sep := '';
else
sep := outputSep;
end If;
res := res || sep || Substr(l_string, 1, endpos-1);
l_String := Substr(l_string, endPos + Length(closingStr));
else
exit;
end if;
End Loop;
return res;
End;
在您的情况下,可以这样使用:
select GetSurroundedText(mycolumn, '<>', '<>', ' ') from mytable;
在Oracle/PLSQL中,replace函数将字符串中的一个字符序列替换为另一组字符。
replace( string1, string_to_replace, [ replacement_string ])
所以
replace( YourString, '<>', '');
应该做这个把戏。
如果您的情况更复杂,并且需要更详细的解决方案,您可以检查此函数,该函数允许您在分隔符之间提取单词。
http://www.oradev.com/parse_string.jsp
希望能有所帮助。
使用replace函数替换<>到"。它将在上工作