티스토리 뷰
Delphi
function CharInSet(C: AnsiChar; const CharSet: TSysCharSet): Boolean;
function CharInSet(C: WideChar; const CharSet: TSysCharSet): Boolean;
C++
extern PACKAGE bool __fastcall CharInSet(char C, const TSysCharSet &CharSet)/* overload */;
Properties
Type |
Visibility |
Source |
Unit |
Parent |
function |
public |
System.SysUtils.pas System.SysUtils.hpp |
Description
CharInSet checks whether a given character is contained within a set.
Use CharInSet to check whether a given character is contained within a set of characters.
CharInSet checks whether the C parameter is contained within the CharSet set.
C can either be a Unicode or an ANSI character, while CharSet can only be a set of ANSI characters.
The function returns True if the character is contained within the set and False if the character is not contained within the set or if the character is Unicode.
Note: We recommend that the TCharacter class (which is Unicode enabled) be used whenever possible to check whether a character enters a certain category, such as digits or letters.
CharInSet는 주어진 문자가 집합 내에 포함되어 있는지 확인합니다.
CharInSet를 사용하여 주어진 문자가 문자 집합에 포함되어 있는지 여부를 확인하십시오.
CharInSet은 C 매개변수가 CharSet 집합 내에 포함되어 있는지 확인합니다.
C는 유니코드이거나 ANSI 문자일 수 있지만, CharSet은 ANSI 문자 집합만 될 수 있습니다.
문자가 집합 내에 포함되어 있으면 이 함수는 True를 반환하고, 집합 내에 문자가 포함되어 있지 않거나, 문자가 유니코드인 경우 False를 반환합니다.
참고: TCharacter 클래스 (유니코드 사용 가능)는 가능하면 문자가 숫자 또는 문자와 같은 특정 범주에 있는지 확인하는데 사용하는 것이 좋습니다.
Example
var CharSet: TSysCharSet; TmpChar: Char; begin CharSet := ['a'..'z'];
// 결과: TRUE TmpChar := 'a'; Writeln(CharInSet(TmpChar, CharSet));
// 결과: FALSE TmpChar := 'A'; Writeln(CharInSet(TmpChar, CharSet));
Readln; end. |
either 미국·영국 [|aɪðə(r);|i:ðə(r)] 1. (둘 중) 어느 하나(의) recommend 미국·영국 [|rekə|mend] 1. 추천하다 whenever 미국·영국 [wen|evə(r)] 1. …할 때는 언제든지 certain 미국식 [|s3:rtn] 1. 확실한, 틀림없는 |
출처: http://docwiki.embarcadero.com/Libraries/XE2/en/System.SysUtils.CharInSet
'프로그래밍 언어 > Delphi' 카테고리의 다른 글
[Reference] System.SysUtils.StrLen (0) | 2017.04.26 |
---|---|
[Reference] System.SysUtils.GetTime (0) | 2017.04.25 |
[Reference] System.SysUtils.Trim (0) | 2017.04.22 |
[Reference] System.SysUtils.AssignStr (0) | 2017.04.21 |
[Reference] System.SysUtils.RPR (0) | 2017.04.20 |
- Total
- Today
- Yesterday
- 설명
- wfd
- 교육센터
- tdataset
- 말하기
- Reference
- 독해
- 문법
- 상황
- 정렬
- SysUtils
- 일기
- SWT
- 응용
- 알고리즘
- 계산기
- ADODB
- 여행영어 100일의 기적
- RA
- Delphi
- System
- 대상
- VCL
- 왕초보 영어회화 100일의 기적
- 영어
- java
- Pte
- 작문
- 스택
- 자료구조
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |