Insert()

String::Insert(int, const String&) const method

Inserts substring at specified position.

String System::String::Insert(int startIndex, const String &value) const

Arguments

ParameterTypeDescription
startIndexintIndex in this string to start inserting from.
valueconst String&Insertion string.

Return Value

String with insertion done.

See Also