숫자 문자열를 정수형으로 변환하기 위하여 StrToInt(), StrToInt64() 함수를 주로 이용합니다. 숫자 문자열을 다루는 함수들의 원형은 다음과 같습니다. { StrToInt converts the given string to an integer value. If the string doesn't contain a valid value, an EConvertError exception is raised. } function StrToInt(const S: string): Integer; function StrToIntDef(const S: string; Default: Integer): Integer; function TryStrToInt(const S: string; out Value: In..