Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Visual Studio
- dbadvgrid
- rank
- blog
- python 3.7
- GIT
- 백준
- hackerrank
- advColumnGrid
- Push
- Delphi
- templates
- HTML
- python3
- 델파이
- COMMIT
- declare
- github
- delphi 10.3
- queryset
- pyhcarm
- Django
- get_object_or_404
- c#
- pythonanywhere
- TMS
- MSSQL
- anaconda3
- 중복제거
- PyCharm
Archives
- Today
- Total
DevHyun
문자열이 숫자로만 이루어져있는지 판단하는 함수 본문
문자열이 숫자로만 이루어져있는지 판단하는 함수는 TryStrToInt를 사용하면 된다!
* SysUtils에 선언되어 있는 내장함수임!
function TryStrToInt(const S: string; out Value: Integer): Boolean;
판단하고자 하는 String 변수 S가 문자면 true , integer 변수 Value에 값을 넣어주고
숫자면 false 값 return!
uses SysUtils ...
procedure Tform1.test; var value : integer; begin if TryStrToInt(Edit1.Text, value ) then begin showemssage('숫자'); end else begin showemssage('문자'); end; end; |
* 유사함수 StrToIntDef
'Delphi' 카테고리의 다른 글
파일 이동 (move), 복사(copy) , 삭제(delete) (0) | 2020.10.29 |
---|---|
Directory 생성 및 존재유무 확인 및 Directory 생성/삭제 (0) | 2020.10.29 |
Delphi XE2 버전 이후로 델파이에서 폴더/파일 압축 하고싶을때 (0) | 2020.10.29 |
윈도우 탐색기에서 특정 Directory 열기 (0) | 2020.10.29 |
FormKeyDown 이벤트가 반응을 안할때 (0) | 2020.10.21 |
Comments