|
|
|
|
|
CharactTypeCount (Function) In french: CaractOccurrenceType
Warning
From version 24 (75), CharactTypeOccurrence is kept for backward compatibility. This function has been replaced with CharactTypeCount.
Returns the number of characters matching a given type.
NbChar is int NbChar = CharactTypeCount("AbcdeF", ctUppercase) // NbChar = 2
Syntax
<Result> = CharactTypeCount(<String> , <Type>)
<Result>: Integer Number of characters in the string that correspond to the given type. <String>: Character string Character string to use. <Type>: Integer constant (or combination of constants) Type of characters to find: | | ctAccent | Accented or diacritical character. | ctAlpha | Letters. | ctLowercase | Lowercase characters. | ctNumeric | Numeric characters. | ctPunctuation | Punctuation characters. | ctSpace | Spaces. | ctUppercase | Uppercase characters. |
Remarks: - The combination of ctUppercase + ctAccent is used to find accented uppercase characters.
- The combination of ctLowercase + ctAccent is used to find accented lowercase characters.
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|