Skip to content

Latest commit

 

History

History
87 lines (75 loc) · 2.6 KB

File metadata and controls

87 lines (75 loc) · 2.6 KB

Function: Insert

Inserts a substring into another string at a specified position.

Method Signature

Insert(substring=[string], string=[string], position=[integer])

Arguments

Argument Type Required Description Default
substring string true The string to insert.
string string true
position integer true The position at which to insert the string.

Examples

Related