码迷,mamicode.com
首页 > 其他好文 > 详细

System.Insert - 插入字符串

时间:2015-06-08 13:19:49      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:

System.Insert - 插入字符串

procedure Insert(
  Substr: String;   {要插入的字符串; 可以是常量}
  var Dest: String; {源字符串}
  Index: Integer    {从第几个字符前插入}
);

举例:
var
  ss,s: WideString;
begin
  ss := 万一的博客;
  s :=  Delphi ;
  Insert(s, ss, 4);
  ShowMessage(ss);  {万一的 Delphi 博客}
end;


var
  ss,s: string;
begin
  ss := 万一的博客;
  s :=  Delphi ;
  Insert(s, ss, 7);
  ShowMessage(ss);  {万一的 Delphi 博客}
end;

System 单元下的公用函数目录

支持2种字符编码的。看来以前 应该尽量用widestring ,以后迁移到Unicode的IDE方便,而且写code的习惯也统一。

System.Insert - 插入字符串

标签:

原文地址:http://www.cnblogs.com/CodeGear/p/4560534.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!