Источник - http://apps-oracle.ru/regexp_replace_only_char_number/
with
t
as
(
select
'#2 apps(0_-ORACLE+*.ru_ )ПРИ13мер'
str
from
dual)
select
str
, regexp_replace(str,
'*[^[[:alpha:]]]*'
)
as
only_char
, regexp_replace(str,
'*[^[[:digit:]]]*'
)
as
only_number
from
t
/
STR ONLY_CHAR ONLY_NUMBER
--------------------------------- ------------------------ --------------------
#2 apps(0_-ORACLE+*.ru_ )ПРИ13мер appsORACLEruПРИмер 2013
Этот комментарий был удален автором.
ОтветитьУдалитьReally Good blog post about regular expressions on oracle blog.provided a helpful information.I hope that you will post more updates like this.
ОтветитьУдалитьInformatica Training in Chennai
Этот комментарий был удален автором.
ОтветитьУдалить