Insert
Function | Parameters | Return value |
---|---|---|
Insert |
string s, ``int startIndex,``string value |
string |
Inserts a "value" substring into the "s" string at a specified index position "startIndex" and returns a new string.
Example:
Insert("ABC", 1, "12") = "A12BC"