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>.Increment (Function)
In french: <Type Chaîne>.Incrémente
Increments a number at the beginning or at the end of a string.
Example
String1 is string = "String1"
// Displays "String2"
Info(String1.Increment())
Syntax
<Result> = <Initial string>.Increment([<Position>])
<Result>: Character string
Initial string with the incremented number (or digit).
<Initial string>: Character string
String to increment.
<Position>: Optional integer
Position of the number (or digit) to increment:
FromBeginningThe number at the beginning of the string is incremented.
If the string does not start with a number, the digit 1 is added at the beginning of the string.
FromEndThe number at the end of the string is incremented.
If the string does not end with a number, the digit "1" is added at the end of the string.

If this parameter is not specified, there are three possible cases:
  • the string ends with a number: in this case, the number at the end will be incremented,
  • the string starts with a number: in this case, the number at the beginning will be incremented,
  • the string does not start or end with a number: in this case, the number "1" will be added at the end of the string.
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