ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / String functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
<String type>.CharactTypeCount (Function)
In french: <Type Chaîne>.CaractOccurrenceType
Returns the number of characters matching a given type.
Example
NbChar is int
MyString is string = "AbcdeF"
NbChar = MyString.CharactTypeCount(ctUppercase)
// NbChar = 2
Syntax
<Result> = <String>.CharactTypeCount(<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:
ctAccentAccented or diacritical character.
ctAlphaLetters.
ctLowercaseLowercase characters.
ctNumericNumeric characters.
ctPunctuationPunctuation characters.
ctSpaceSpaces.
ctUppercaseUppercase 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
Component: wd290vm.dll
Minimum version required
  • Version 24
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help