-
[asp]정규식 패턴, regexp프로그램/asp 2013. 4. 27. 18:32
asp가 오래되었지만 이러한 정규식도 있고 좋네요!
'정규식 패턴
pattern = "[^-가-힣a-zA-Z0-9_\s/]"
flag = Word_check(fileStr,pattern)
Function Word_check(str,patrn)
Dim regEx, match, matches SET regEx = New RegExp
regEx.Pattern = patrn ' 패턴을 설정합니다.
regEx.IgnoreCase = True ' 대/소문자를 구분하지 않도록 합니다.
regEx.Global = True ' 전체 문자열을 검색하도록 설정합니다.
SET Matches = regEx.Execute(str) if 0 < Matches.count then
Word_check = true
Else
Word_check = false
end if
End Function'프로그램 > asp' 카테고리의 다른 글
[asp]no-cache, 페이지 인코딩 설정 (CODEPAGE) (0) 2013.04.27 [asp]현재 날짜 시간 요일 (formatdatetime,now) (0) 2013.04.27 [asp]셀렉트 박스 selected (selectbox selected) (0) 2013.04.27 [asp]form 값 post,get 한꺼번에 확인하기 (0) 2013.04.27 [asp]타입확인 varType (typeOf) (0) 2013.04.27