Change string

4D - Documentation   Français   English   German   Spanish   4D v11 SQL, Command Theme List   4D v11 SQL, Command Alphabetical List   4D v11 SQL, Constant Theme List   Back   Previous   Next

version 3


Change string (source; newChars; where) String

ParameterTypeDescription
sourceStringOriginal string
newCharsStringNew characters
whereNumberWhere to start the changes
Function resultStringResulting string

Description

Change string changes a group of characters in source and returns the resulting string. Change string overlays source, with the characters in newChars, at the character described by where.

If newChars is an empty string (""), Change string returns source unchanged. Change string always returns a string of the same length as source. If where is less than one or greater than the length of source, Change string returns source.

Change string is different from Insert string in that it overwrites characters instead of inserting them.

Example

The following example illustrates the use of Change string. The results are assigned to the variable vtResult.

   vtResult := Change string ("Acme"; "CME"; 2)  ` vtResult gets "ACME" 
   vtResult := Change string ("November";"Dec"; 1)  ` vtResult gets "December"

See Also

Delete string, Insert string, Replace string.


4D - Documentation   Français   English   German   Spanish   4D v11 SQL, Command Theme List   4D v11 SQL, Command Alphabetical List   4D v11 SQL, Constant Theme List   Back   Previous   Next