String::Insert

String::Insert
String& Insert(const char* substr, UPInt posAt, SPInt len = -1);
Description

Insert inserts a substring to the original string at the specified position.

Parameters
Parameters 
Description 
const char* substr 
A pointer to substring which is to be inserted. 
UPInt posAt 
Position at which the string is to be inserted. 
SPInt len = -1 
Number of bytes to be inserted. 
Return Value

A String to which a substring has been added.