如題

解决方案 »

  1.   

    做循环 length();
    然后判断#,用COPY()分开
      

  2.   

    procedure SeparateTerms(s : string;Separator : char;Terms : TStrings);
    var
     hs : string;
     p : integer;
    begin
     if Length(s)=0 then
       Exit;
     p:=Pos(Separator,s);
     while P<>0 do
     begin
       hs:=Copy(s,1,p-1);
       Terms.Add(hs);
       Delete(s,1,p);
       p:=Pos(Separator,s);
     end;
     if Length(s)>0 then
       Terms.Add(s);
    end;
      

  3.   

    http://expert.csdn.net/Expert/topic/2648/2648535.xml?temp=.3932611Extractstring地用法。看帮助。
      

  4.   

    var
      S: string;
      SL: TStringList;
    begin
      S := 'abc#kkk22#sfsdfds#';
      SL := TStringList.Create;
      ExtractStrings(['#'], [], PChar(S), SL);
      //SL已经存储了你分开的string
      //另外,这个函数不保存空串
      ShowMessage(SL.Text);
      SL.Free;
    end;
      

  5.   

    VCL Reference
    ExtractStrings functionFills a string list with substrings parsed from a delimited list.UnitClassesCategorystring handling routines (null-terminated)function ExtractStrings(Separators, WhiteSpace: TSysCharSet; Content: PChar; Strings: TStrings): Integer;DescriptionUse ExtractStrings to fill a string list with the substrings of the null-terminated string specified by Content.Separators is a set of characters that are used as delimiters, separating the substrings. Carriage returns, newline characters, and quote characters (single or double) are always treated as separators. Separators are ignored when inside a quoted string until the final end quote. (Note that quoted characters can appear in a quoted string if the quote character is doubled.)WhiteSpace is a set of characters to be ignored when parsing Content if they occur at the beginning of a string.Content is the null-terminated string to parse into substrings.Strings is a string list to which all substrings parsed from Content are added. The string list is not cleared by ExtractStrings, so any strings already in the string list are preserved.ExtractStrings returns the number of strings added to the Strings parameter.Note: ExtractStrings does not add empty strings to the list.