사용자 도구

사이트 도구


dbms:oracle:devel:regexp:regexp_substr

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판 양쪽 다음 판
dbms:oracle:devel:regexp:regexp_substr [2018/05/09 02:41]
starlits [주소문자열 자르기]
dbms:oracle:devel:regexp:regexp_substr [2018/05/09 02:44]
starlits [뒷자리 4자리만 가져오기]
줄 152: 줄 152:
 select substr(phone,-4,4) as str select substr(phone,-4,4) as str
 from cust;   from cust;  
 +</code>
 +
 +===== 첫단어 가져오기 =====
 +  - 숫자/문자로만 이루어진 첫단어 <code sql>
 +SELECT REGEXP_SUBSTR('first-team second-team third-team', '[[:alnum:]]*') FROM dual;
 +</code>
 +  - 스페이스가 있기 전까지의 첫단어 <code sql>
 +SELECT REGEXP_SUBSTR('first-team second-team third-team', '[^ ]+') FROM dual;
 </code> </code>
dbms/oracle/devel/regexp/regexp_substr.txt · 마지막으로 수정됨: 2019/03/05 00:40 저자 starlits