문자열 비교할때 대소문자 구분없이 하기.
Posted by Go crazy for anything that will make you smile.
링크 : http://www.autobase.biz/Korean/AutoBaseHelp/Help9%5C%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8%EB%8F%84%EC%9B%80%EB%A7%90%5Cstricmp.htm 문자열 비교할때 항상 소문자나 대문자로 변환해서 strcmp를 했는데 이런게 있었군..젝1. stricmp int retn=@stricmp(char *string1, char *string2); stricmp는 두개의 스트링을 비교하는 함수이다. 이 함수는 대소문자 구별을 하지 않는다. RETURN값 String1과 string2 가 같다면 retn -> 0 String1이 string2 보다 더 크다면 retn -> 1 String2가 string1 보다 더 같다면..