Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Регулярное выражение, ограничить количество
--Oracle 11g Express Edition --please drop objects you've created at the end of the script --or check for their existance before creating --'\\' is a delimiter --Регулярное выражение, ограничить количество with t as ( select 1 n, '_170_' s from dual union all select 2, '%170_' from dual union all select 3, '171%' from dual union all select 4, '172_' from dual union all select 5, '173' from dual union all select 6, '123456789012345678_%' from dual union all select 7, '12345678901234567890_%' from dual ) select n, s, length(s) l from t where not regexp_like(s, q'~[^[:digit:]_%]| .{21,}| ^[:digit:][[:digit:]_]*$| ^[:digit:][[:digit:]%]*$| ^%[%[:digit:]]*$| ^%[%_]*$| ^_[_[:digit:]]*$| ^_[_%]*$~', 'x')
run
|
edit
|
history
|
help
0
DBMS
fff
oracle procedure example
neha1
PL/SQL Control Statements
HELLO WORLD
Understanding basic loop
Trig
function to check if reverse of a string s1 is a superstring of string s2.
IT