RSS
Instr
http://devdream.net/4
DevDream(175.123.***.***)
2018.08.13 11:14:32
    Dim sKeyword

    sKeyword = "abcdefghi"

    If InStr(1, sKeyword, "D", 0) > 0 Then
        Response.Write "D 문자열이 포함되어있습니다."
    Else
        Response.Write "D 문자열이 존재하지 않습니다."
    End If


Instr(인수1, 인수2, 인수3, 인수4)

인수1 : 찾을 문자열 시작 위치

인수2 : 찾을 대상 문장

인수3 : 찾아야 할 문자열

인수4 : 대소문자 구분(기본값 : 0)