吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1549|回复: 3
收起左侧

[求助] 怎么能让左面这列表格没有?

[复制链接]
冥界3大法王 发表于 2019-8-25 21:18
读取以下txt:

涟涟 云朵 花儿 朵儿
小翠 小红 小莲 小爱
翠翠 花花 园园 龙龙
翠翠 花花 园园 龙龙
涟涟 云朵 花儿 朵儿
小翠 小红 小莲 小爱
翠翠 花花 园园 龙龙
无标题.png



[Delphi] 纯文本查看 复制代码

unit Unit1;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
  System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs,
  Vcl.StdCtrls, Vcl.Grids;

type
  TForm1 = class(TForm)
    StringGrid1: TStringGrid;
    Button1: TButton;
    Button2: TButton;
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}
procedure TForm1.Button2Click(Sender: TObject);
  function SplitString(const source, ch: string): TStringList;
  var
    temp: string;
    i: integer;
  begin
    result := tstringlist.Create;
    temp := source;
    i := pos(ch, source);
    while i <> 0 do
    begin
      result.Add(copy(temp, 0, i - 1));
      delete(temp, 1, i);
      i := pos(ch, temp);
    end;
    result.Add(temp);
  end;

var
  i, j, k: integer;
  i_RowCount, i_ColCount: Integer;
  StrList, TmpList: TStringList;
  s_CurItem: string;
begin
  StrList := TStringList.Create;
  TmpList := TStringList.Create;
  StrList.LoadFromFile(ExtractFileDir(ParamStr(0)) + '/test.txt');
  for k := 0 to StrList.Count - 1 do
  begin
    s_CurItem := StrList.Strings[k];
    TmpList.Clear;
    TmpList := SplitString(s_CurItem, ' ');
    i_ColCount := StrList.Count;
    i_RowCount := TmpList.Count;
    StringGrid1.ColCount := i_RowCount + 1;
    for j := 1 to i_RowCount do
    begin
      StringGrid1.Cells[j, k] := TmpList.Strings[j - 1];
    end;
  end;
  StrList.Free;
  TmpList.Free;
end;

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

ljzbox 发表于 2019-8-25 23:05
按住alt选中左列空格,删除就可以了

免费评分

参与人数 1吾爱币 -1 收起 理由
冥界3大法王 -1 一边凉快去~~

查看全部评分

xinyuguy 发表于 2019-8-26 08:57
这好像是你自己 写进去的 把吧,你 第一列写的东西是不是有问题, 你看你 的 分割 文本的函数 前面 是不是会 出来 一个 空
xinyuguy 发表于 2019-8-26 09:00
还有啊  stringlist  本身就可以 制定 分隔符 ,自动 帮你  分开的 ,你也没有必要自己 再写个 函数
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-27 02:32

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表