打印本文 打印本文 关闭窗口 关闭窗口
字符串分割扩展 SplitEx[Delphi]
作者:武汉SEO闵涛  文章来源:敏韬网  点击数645  更新时间:2009/4/23 18:31:09  文章录入:mintao  责任编辑:mintao
Didi.04-9-10 教师节
function SplitEx(const Str {需要拆分的文章}, Delimiters {拆分关键字,回车.?!等}: string): TStringList;
var
  ss: WideString;
  i, St: integer;
  function IsDelimiter(const Delimiters, c: string): Boolean;
  begin //判断是否为拆分关键字
    result := StrScan(PChar(Delimiters), c[1]) <> nil;
  end;
begin
  Result := TStringList.Create;
  with Result do
  begin
    Clear; Sorted := True; Duplicates := dupIgnore;
  end;
  if Length(Str) < 1 then exit;
  ss := Str; //双字符支持,纯英文可以去掉
  St := -1;
  for i := 1 to Length(ss) do
    if IsDelimiter(Delimiters, ss[i]) then
      if St <> -1 then
      begin
        Result.Add(Trim(Copy(ss, St, i - St)));
        St := -1;
      end
      else
        if St = -1 then St := i;
  if St <> -1 then Result.Add(Copy(ss, St, Length(Str)));
end;

//操作演示
with SplitEx(Memo1.Text, '''',,. ?!	'''' + #13#10) do
  try
    SaveToFile(''''c:\temp_demo.txt'''');
  finally
    Free;
  end;

原帖 http://community.csdn.net/Expert/topic/3357/3357097.xml?temp=.9228937

打印本文 打印本文 关闭窗口 关闭窗口