5 lines
173 B
Markdown
5 lines
173 B
Markdown
|
e- 모든 숫자 추출
|
||
|
> select regexp_replace('12HL5240', '[^0-9]') from dual
|
||
|
|
||
|
- 문자열뒷부분 숫자 추출
|
||
|
> select regexp_substr('12HL5240', '[0-9]+$') from dual
|