InsertChars
Inserts one or more characters into the value of the current field.
Syntax
bool InsertChars (strParam)
Parameters
- The characters or character string to be inserted; defaults to a space.
- A number n indicating the target position within the captured value; defaults to the end of the value.
- The number of insertions; defaults to 1.
Returns
Always True.Level
Field level.Details
Inserts a character or string of characters into the captured value, one or more times.- Example
InsertChars("=$,1,1") 345.67 becomes =$345.67 InsertChars("=$,1,2") 345.67 becomes =$=$345.67