Insert

插入字符串至指定位置。

uint  Insert(

   uint          pos,     // 位置

   const string  str      // 插入的字符串

   )

参数

pos

[输入]  插入位置。

str

[输入]  插入的字符串。

返回值

返回字符串长度。

Insert

将字符串插入到 CString 类实例的指定位置。

uint  Insert(

   uint      pos,     // 位置

   CString*  str      // 对象描述符

   )

参数

pos

[输入]  插入位置。

str

[输入]  插入的 CString 类对象的描述符。

返回值

返回字符串长度。