|
|
|
|
|
<ANSI string>.Insert (Function) In french: <Chaîne ANSI>.Insère Inserts a string into another character string at a given position.
sNotes is string = "SiLaFaMiReDo"
sNotesComplet is string = sNotes.Insert("Sol", 5)
Syntax
<Result> = <Initial string>.Insert(<String to insert> , <Insertion position>)
<Result>: Character string Character string into which the string was inserted at the specified position. <Initial string>: Character string Character string into which another string will be inserted. WARNING: This string will not be modified by the insertion. <String to insert>: Character string or Buffer String to be inserted into <Initial string>. <Insertion position>: Integer Position at which <String to insert> will be added.- If the specified position is negative, the string will be inserted at the beginning of the initial string.
- If the specified position is greater than the length of the initial string, the string will be inserted at the end of the initial string.
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|