Insert |
Inserts a substring into a string beginning at a specified point.
SyntaxInsert(Source ,S, Index) Parameters of Insert: Source:Necessary parameter.Character string type. S:Necessary parameter.Character string type. Index:Necessary parameter.Integer type.DescriptionInsert merges Source into S at the position S[index].ExampleInsert('Source','Demo DB',0),return value is'Source Demo DB'. |