asp 에서 중국어 문자 함수 여 부 를 검사 합 니 다.

<%'**********************************'함수:CheckChinese(strng)'매개 변수:strng,검증 대기 문자'설명:중국어 문자 여 부 를 검사 하고 반환 값:중국 어 는 true,그렇지 않 으 면 false'예시:<%=CheckChinese(strng)%>'*************************************************기능 CheckChinese(strng)CheckChinese=true Dim regEx, Match Set regEx = New RegExp regEx.Pattern = "\||\#|\&|\?|\@|\%|\*|\/|\.|\,|\;|\'|\:|\-|\_|\+|\^|\""|\=|\<|\>|\ " regEx.IgnoreCase = True Set Match = regEx.Execute(strng) if match.count then CheckChinese= false End Function %>

좋은 웹페이지 즐겨찾기