델파이/델파이관련

델파이 함수 정리 중

지병철 2017. 4. 13. 10:44

function StrToIntDef(string 변수, default int value) : Integer

> String 을 Integer로 변환한다. 에러 발생시 'default int value'를 Return 한다.

>   str := '12.a';

>   ivalue := StrToIntDef(str, -1));

>   if ivalue = -1 then

>      showmessae('fail')

>   else

>      showmessage(inttostr(ivalue);


ByteToCharLen : 한글 포함된 문자열 길이 구할 때