写了一个字符串的二维表: TSta    


STA 单元 (用到 System.SysUtils.TStringHelper):



unit STA;interfaceuses System.SysUtils, System.Classes;type  TSta = record    FSeparator: Char;    FArr: TArray<TArray>;    constructor Create(const aStr: string; const aSeparator: Char = ';'); overload;    class operator Explicit(const aStr: string): TSta;    class operator Implicit(const aStr: string): TSta;    function GetItem(i,j: Integer): string;    procedure SetItem(i,j: Integer; Value: string);    function GetRow(i: Integer): string;    procedure SetRow(i: Integer; Value: string);    procedure SetSeparator(const Value: Char);    function GetRowCount: Integer;    procedure SetRowCount(const Value: Integer);    function ToString: string;    procedure Clear;    procedure LoadFromFile(const aFileName: string; aEncoding: TEncoding = nil);    procedure SaveToFile(const aFileName: string; aEncoding: TEncoding = nil);    property Separator: Char read FSeparator write SetSeparator;    property RowCount: Integer read GetRowCount write SetRowCount;    property Items[i,j: Integer]: string read GetItem write SetItem; default;    property Rows[i: Integer]: string read GetRow write SetRow;  end;implementation{ TSta }procedure TSta.Clear;begin  SetLength(FArr, 0);end;constructor TSta.Create(const aStr: string; const aSeparator: Char);var  tArr: TArray;  i: Integer;begin  FSeparator := aSeparator;  tArr := aStr.Split([sLineBreak], ExcludeEmpty);  SetLength(FArr, Length(tArr));  for i := 0 to High(FArr) do  begin    FArr[i] := tArr[i].Split([FSeparator]);  end;end;function TSta.GetItem(i,j: Integer): string;begin  Result := '';  if (i < 0) or (j < 0) then Exit;  if (i < Length(FArr)) and (j < Length(FArr[i])) then    Result := FArr[i, j].Trim;end;procedure TSta.SetItem(i,j: Integer; Value: string);var  k,n: Integer;begin  if Value.Trim = '' then Exit;  if Length(FArr) = 0 then FSeparator := ';';  n := Length(FArr);  if i >= n then  begin    SetLength(FArr, i+1);    for k := n to i - 1 do SetLength(FArr[k], 1);  end;  if j >= Length(FArr[i]) then SetLength(FArr[i], j+1);  FArr[i,j] := Value.Trim;end;function TSta.GetRow(i: Integer): string;begin  Result := '';  if i < Length(FArr) then  begin    if Length(FArr[i]) > 0 then      Result := Result.Join(FSeparator, FArr[i]);  end;end;function TSta.GetRowCount: Integer;begin  Result := Length(FArr);end;procedure TSta.SetRow(i: Integer; Value: string);var  k,n: Integer;begin  if Value.Trim = '' then Exit;  if Length(FArr) = 0 then FSeparator := ';';  n := Length(FArr);  if i >= n then  begin    SetLength(FArr, i+1);    for k := n to i - 1 do SetLength(FArr[k], 1);  end;  FArr[i] := Value.Split([FSeparator]);end;procedure TSta.SetRowCount(const Value: Integer);begin  SetLength(FArr, Value);end;procedure TSta.SetSeparator(const Value: Char);begin  FSeparator := Value;  if Length(FArr) = 0 then SetLength(FArr, 1); //直接使用索引赋值时, 会根据 Length(FArr) 是否为 0 来设置默认分隔符end;class operator TSta.Explicit(const aStr: string): TSta;begin  Result := TSta.Create(aStr);end;class operator TSta.Implicit(const aStr: string): TSta;begin  Result := TSta.Create(aStr);end;function TSta.ToString: string;var  i: Integer;begin  if Length(FArr) = 0 then Exit('');  Result := Rows[0];  for i := 1 to High(FArr) do    Result := Result + sLineBreak + Rows[i];end;procedure TSta.LoadFromFile(const aFileName: string; aEncoding: TEncoding);begin  if not FileExists(aFileName) then Exit;  if aEncoding = nil then aEncoding := TEncoding.Default;  with TStringList.Create do begin    LoadFromFile(aFileName, aEncoding);    Self := Text;    Free;  end;end;procedure TSta.SaveToFile(const aFileName: string; aEncoding: TEncoding);begin  if aEncoding = nil then aEncoding := TEncoding.Default;  with TStringList.Create do begin    Text := Self.ToString;    SaveToFile(aFileName, aEncoding);    Free;  end;end;end.


测试:



uses STA;procedure TForm1.Button1Click(Sender: TObject);var  S: TSta;  str: string;begin  S := 'AAA;BBB;CCC' + sLineBreak + '111;222;333'; //可以从字符串隐式或显式地转换到 TSta  str := S[0,0];    //AAA  str := S[1,2];    //333  str := S[9,9];    //越界读取返回空  str := S.Rows[0]; //AAA;BBB;CCC  str := S.Rows[1]; //111;222;333  str := S.ToString; //AAA;BBB;CCC                     //111;222:333  S.Separator := '&'; //更换分隔符; 默认是分号; 也可在 Create 时指定  str := S.Rows[1];   //111&222&333  ShowMessage(str);end;procedure TForm1.Button2Click(Sender: TObject);var  S: TSta;  str: string;begin  S[0,0] := 'aaa';  S[0,1] := 'bbb';  S[0,2] := 'ccc';  S[2,2] := 'zzz';  str := S.ToString; //aaa;bbb;ccc                     //                     //;;zzz  S.Rows[1] := '111;222;333';  str := S.ToString; //aaa;bbb;ccc                     //111;222;333                     //;;zzz//  ShowMessage(str);end;procedure TForm1.Button3Click(Sender: TObject);const  nFileName = 'c:\temp\staTest.txt';var  S: TSta;  str: string;begin  S[0,0] := 'aaa';  S[0,1] := 'bbb';  S[0,2] := 'ccc';  S[1,0] := '111';  S[1,1] := '222';  S[1,2] := '333';  S[1,3] := '444';  S.SaveToFile(nFileName);   //保存到文件  S.Clear;  str := S[0,0]; //空//  ShowMessage(str);  S.LoadFromFile(nFileName); //从文件读取  str := S[0,0];    //aaa  str := S.Rows[0]; //aaa;bbb;ccc//  ShowMessage(str);end;


©著作权归作者所有:来自51CTO博客作者JLee79的原创作品,如需转载,请注明出处,否则将追究法律责任

更多相关文章

  1. 做了一个 62 进制的简单实现
  2. 测试字符串写入类: TStringWriter
  3. 测试字符串读取类: TStringReader
  4. 将字符串转换成 UTF8 编码的函数
  5. 学用 ASP.Net 之 System.TimeSpan 结构
  6. 学用 ASP.Net 之 "字符串" (1): 基础
  7. 学用 ASP.Net 之 "字符串" (6): StringInfo 类
  8. 学用 ASP.Net 之 "字符串" (5): StringBuilder 类
  9. 学用 ASP.Net 之 "字符串" (4): string 类的扩展方法

随机推荐

  1. 【面试】Android Retrofit+Rxjava 如何实
  2. Android TextView 字体加粗
  3. 添加ddHeaderView注意问题
  4. 修改android studio 默认的so文件检索路
  5. Android(安卓)蓝牙开发(九)A2DP基本功能
  6. android build.prop详解
  7. android避免service被杀 博客分类: androi
  8. eclipse 启动 Android SDK Content Loade
  9. Android之两种toast的实现
  10. Android adb 使用总结 (调试专用)