Files
mql5-skills/skills/mql5/references/docs/34-standardlibrary/2115-standardlibrary-stringoperations-cstring-cstringinsert.md
T

52 lines
672 B
Markdown
Raw Normal View History

2026-06-23 21:47:51 +08:00
# Insert
Inserts a string to the specified position.
```
uint  Insert(
   uint          pos,     // position
   const string  str      // string
   )
```
Parameters
pos
[in]  Insert position.
str
[in]  String to insert.
Return Value
Resulted string length.
# Insert
Inserts a string to the specified position from the CString class instance.
```
uint  Insert(
   uint      pos,     // position
   CString*  str      // pointer
   )
```
Parameters
pos
[in]  Position to insert into.
str
[in]  Pointer to the CString class instance to insert.
Return Value
Resulted string length.