delphi字符串固定长度换行

Posted semth

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi字符串固定长度换行相关的知识,希望对你有一定的参考价值。

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字符串固定长度换行的主要内容,如果未能解决你的问题,请参考以下文章

设置delphi中的edit输入固定长度字段!

Delphi DBgrid 换行 Word 内容

PHP for循环中怎么让字符串超过固定特定长度后自动换行?

动态 Rstudio 代码片段

宽字符std::wstring的长度和大小问题?sizeof(std::wstring)是固定的32,说明std::wstring是一个普通的C++类,而且和Delphi不一样,没有负方向,因为那个需

delphi如何按固定的分隔符来分割字符串,并且把分割出来的字符串放到数组中?具体的代码如何实现?