Classic ASP
숫자인지 문자인지 구별하기
NJHouse
2015. 5. 23. 19:22
<%
if isnumeric(10000) then
response.write "숫자입니다."
else
response.write "숫자가 아닙니다."
end if
%>
if isnumeric(10000) then
response.write "숫자입니다."
else
response.write "숫자가 아닙니다."
end if
%>
반응형