본문 바로가기
Develop/Etc

[ASP]문자열(Mid, Instr, InstrRev, LCase, UCase)

by bellsilver7 2015. 11. 17.
728x90
예를 들면 

email = euneun@tistory.com

위의 mail 이름이 있다고 했을 때 아이디와 도메인을 분리하고자 한다면

다음과 같은 함수를 사용한다.


mail1 = Mid(email 1, Instr(email, "@") - 1)

mail2 = Mid(email InstrRev(mail, "@") + 1)


이렇게 하면 아래와 같은 값을 얻을 수 있다.


mail1 = euneun

mail2 = tistory.com


Mid함수 : Mid(문자열, 어디서부터, 어디까지)

Instr함수 : 좌->우 Instr(문자열, 어디까지)

InstrRev함수 : 우->좌 Instr(문자열, 어디까지)


-------------------------------------------------------------------------------------------------------------------------------


문자열 전체를 대문자로 혹은 소문자로 변환하고자 할 때 

다음과 같은 함수를 사용할 수 있다.

str1 = LCase("EunEun")

str2 = UCase("EunEun")

결과 값

str1 = euneun

str2 = EUNEUN


728x90

'Develop > Etc' 카테고리의 다른 글

팝업창  (0) 2015.12.16
[Editplus]Zen Coding(젠코딩)  (0) 2015.11.18
[ASP] 형변환 함수  (0) 2015.11.17
웹 개발자라면 알아야할 보안 상식 SQL Injection  (0) 2015.11.17
로딩 이미지 파일  (0) 2015.11.17

댓글