码迷,mamicode.com
首页 > Windows程序 > 详细

delphi字符串固定长度换行

时间:2019-04-24 17:47:55      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:int   while   osi   字符   换行   长度   auto   com   val   

var
  str,capstr:string;
  i,j:integer;
 
....................
j:=500;   //这个地方可能要根据你显示的宽度来换算对应的字符长度
str:=somestring;
capstr:=‘‘
i:=1
while i<=length(somestring) do
begin
  capstr:=capstr+copy(str,i,j)+#13#10;
  i:=i+j;
end;
 
label1.WordWrap:=true;
label1.AutoSize:=true;
label1.Font.Name:=‘宋体‘;
label1.Caption:=capstr;
 
........................

delphi字符串固定长度换行

标签:int   while   osi   字符   换行   长度   auto   com   val   

原文地址:https://www.cnblogs.com/semth/p/10763520.html

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