-
[ASP] 문자열 자르기(Mid, Left, Right)개발 2019. 12. 4. 17:14728x90
str = "leeheari"
response.write LEFT(str, 4) & "<br>"
response.write MID(str, 5, 2) & "<br>"
response.write RIGHT(str, 4) & "<br>"
-- 출력결과 --
leeh
ea
eari
https://marlboroyw.tistory.com/25
'개발' 카테고리의 다른 글
아파치 재기동 없이 적용 (0) 2020.04.23 PHP 리눅스 조작 (0) 2020.04.23 MYSQL Workbench Adminstrative Roles (0) 2019.11.25 안드로이드 Manifest.xml (0) 2019.11.24 DML 데이터 조작어 (0) 2018.11.14