Removechars()

Removes the substring from the given string, at the position for the characters count

Usage

STRING = Removechars( string, start, count )
Argument Summary
string string
start start position
count count

Calling

Supports named-parameter calling allowing you to use the function like:

Removechars(
   string=?, 
   start=?, 
   count=?
);

Supports passing parameters as a structure using ArgumentCollection:

Removechars( ArgumentCollection={
   string : ?, 
   start : ?, 
   count : ?
} );