zoukankan      html  css  js  c++  java
  • delphi中Tstringlist分割字符串的用法?

    TStrings是一个抽象类,在实际开发中,是除了基本类型外,应用得最多的。
      常规的用法大家都知道,现在来讨论它的一些高级的用法。
      
    1、CommaText
      
    2、Delimiter &DelimitedText
      
    3、Names &Values &ValueFromIndex
      先看第一个:CommaText。怎么用呢?
      
    const
        constr :String
    = 'aaa,bbb,ccc,ddd';
      
    var
       strs :TStrings;
       i :Integer;
      
    begin
       strs :
    = TStringList.Create;
       strs.CommaText :
    = constr;
      
    for i := 0 to Strs.Count-1 do
       ShowMessage(Strs[i]);
      
    end;
      执行了这段代码后,可以看到ShowMessage显示出来的分别是:aaa bbb ccc ddd。
      也就是说,strs.CommaText :
    = constr这一句的作用,
      就是把一个字符串以
    ','为分割符,分段添加到TStrings中。
      那么如果不是以
    ','来分割,又该怎么做呢?现在看第二个例子。使用Delimiter和DelimitedText。
      
    const
        constr :String
    = 'aaa\bbb\ccc\ddd';
      
    var
       strs :TStrings;
       i :Integer;
      
    begin
       strs :
    = TStringList.Create;
       strs.Delimiter :
    = '\';
       strs.DelimitedText :
    = constr;
      
    for i := 0 to Strs.Count-1 do
       ShowMessage(Strs[i]);
      
    end;
      可以看到, 显示的效果和第一个例子是一模一样的。解释一下:
      Delimiter为分隔符,默认为:
    ','。DelimitedText就是按Delimiter为分隔符的一个串,
      得到赋值后回把这个字符串按Delimiter的字符添加到TStrings中。
      说到这里,有想起一个属性,QuoteChar。其默认值为:
    '"'(不包括单引号)
      有何用呢?看例子:
      
    const
        constr :String
    = '"aaa"\"bbb"\"ccc"\"ddd"';
      
    var
       strs :TStrings;
       i :Integer;
      
    begin
       strs :
    = TStringList.Create;
       strs.Delimiter :
    = '\';
       strs.DelimitedText :
    = constr;
      
    for i := 0 to Strs.Count-1 do
       ShowMessage(Strs[i]);
      
    end;
      显示出来的仍然是aaa bbb ccc ddd。为什么不是:"aaa" "bbb" "ccc" "ddd"呢?
      再来看一个例子:
      
    const
      constr :String
    = '|aaa|\|bbb|\|ccc|\|ddd|';
      
    var
       strs :TStrings;
       i :Integer;
      
    begin
       strs :
    = TStringList.Create;
       strs.Delimiter :
    = '\';
       strs.QuoteChar :
    = '|';
       strs.DelimitedText :
    = constr;
      
    for i := 0 to Strs.Count-1 do
       ShowMessage(Strs[i]);
      
    end;
      显示出来的又是aaa bbb ccc ddd。对比一下,应该不难明白吧?这个就不多说了,用得也不多。
      但是还要多说一句,当Delimiter为:
    ','而QuoteChar为:'"'时,
      DelimitedText和CommaText是同等的。
      最后要说的三个是:Names
    &Values &ValueFromIndex。
      看看下面的代码:
      
    const
        constr :String
    = '0=aaa,1=bbb,2=ccc,3=ddd';
      
    var
       strs :TStrings;
       i :Integer;
      
    begin
       strs :
    = TStringList.Create;
       strs.CommaText :
    = constr;
      
    for i := 0 to strs.Count-1 do
      
    begin
       ShowMessage(strs.Names[i]);
       ShowMessage(strs.Values[strs.Names[i]]);
       ShowMessage(strs.ValueFromIndex[i]);
      
    end;
      
    end;
      通过这个例子不难看出:
      这个时候strs中的内容是:
      
    0=aaa
      
    1=bbb
      
    2=ccc
      
    3=ddd
      而Names中则是:
      
    0
      
    1
      
    2
      
    3
      在Values中则是:
      aaa
      bbb
      ccc
      ddd
  • 相关阅读:
    OGG实验:喂奶间隔数据表通过OGG配置同步
    Oracle Exadata 学习笔记之核心特性Part1
    js 表格指定列,根据相同值实现跨行合并
    tr td同时添加点击事件
    Oracle 分页查询
    tomcat启动时运行指定的java类
    application/x-www-form-urlencoded与multipart/form-data与application/json的区别 精析
    nodejs中thiskeyword的问题
    AlphaGo 开源项目研究(1)
    LeetCode -- Best Time to Buy and Sell Stock II
  • 原文地址:https://www.cnblogs.com/freespider/p/1636146.html
Copyright © 2011-2022 走看看