我有
“这是 <>sample<> 文本。需要提取 <>smth1<> 和 <>smth2<> 以及许多其他内容。” 在 oracle 数据库的列中。我需要得到:
样本 smth1 smth2
有什么帮助吗?
尝试创建此功能:
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
希望能帮助到你。
使用替换功能将<>替换为''。它将起作用