我从网上看一个拼音检索刚好要用到。所以就拿下来用。结果提示我
[Error] Unit1.pas(18): 'END' expected but 'LABEL' foundfunction TForm1.GetPYIndexChar(hzchar: string): char;
begin
  case WORD(hzchar[1]) shl 8 + WORD(hzchar[2]) of
    $B0A1..$B0C4 : result := 'A';
    $B0C5..$B2C0 : result := 'B';
    $B2C1..$B4ED : result := 'C';
    $B4EE..$B6E9 : result := 'D';
    $B6EA..$B7A1 : result := 'E';
    $B7A2..$B8C0 : result := 'F';
    $B8C1..$B9FD : result := 'G';
    $B9FE..$BBF6 : result := 'H';
    $BBF7..$BFA5 : result := 'J';
    $BFA6..$C0AB : result := 'K';
    $C0AC..$C2E7 : result := 'L';
    $C2E8..$C4C2 : result := 'M';
    $C4C3..$C5B5 : result := 'N';
    $C5B6..$C5BD : result := 'O';
    $C5BE..$C6D9 : result := 'P';
    $C6DA..$C8BA : result := 'Q';
    $C8BB..$C8F5 : result := 'R';
    $C8F6..$CBF9 : result := 'S';
    $CBFA..$CDD9 : result := 'T';
    $CDDA..$CEF3 : result := 'W';
    $CEF4..$D188 : result := 'X';
    $D1B9..$D4D0 : result := 'Y';
    $D4D1..$D7F9 : result := 'Z';
  else
    result := char(0);
  end;
end;function TForm1.SearchByPYIndexStr(SourceStrs: TStrings;
  PYIndexStr: string): string;label NotFound
var
i, j   :integer;
hzchar :string;
begin
  for i:=0 to SourceStrs.Count-1 do
  begin
    for j:=1 to Length(PYIndexStr) do
    begin
    hzchar:=SourceStrs[i][2*j-1]
    + SourceStrs[i][2*j];
    if (PYIndexStr[j]<>'?') and
    (UpperCase(PYIndexStr[j]) <>
    GetPYIndexChar(hzchar)) then goto NotFound;
    end;
  if result='' then result := SourceStrs[i]
  else result := result + Char
  (13) + SourceStrs[i];
  NotFound:
  end;
end;下面是我载下来的代码。大家帮我看一下为什么label NotFound这个会错。
高手如果知道请指教

解决方案 »

  1.   

    function SearchByPYIndexStr(SourceStrs: TStrings;
      PYIndexStr: string): string;function TForm1.SearchByPYIndexStr(SourceStrs: TStrings;
      PYIndexStr: string): string;
    label NotFound;
    var
      

  2.   

    label NotFound后面少了一个;
      

  3.   

    楼上的不地道 ,知道怎么改去不说出来叫大家学习!!!
    eee 
    不厚道阿!!!!!!!!!!
      

  4.   

    不好意思最近比较忙所以我把我改的代码贴上来。
    {******获取指定汉字的拼音索引字母,如:“汉”的索引字母是“H”*********}
    function TRecHouseForm1.GetPYIndexChar(hzchar: string): char;
    begin
      case WORD(hzchar[1]) shl 8 + WORD(hzchar[2]) of
        $B0A1..$B0C4 : result := 'A';
        $B0C5..$B2C0 : result := 'B';
        $B2C1..$B4ED : result := 'C';
        $B4EE..$B6E9 : result := 'D';
        $B6EA..$B7A1 : result := 'E';
        $B7A2..$B8C0 : result := 'F';
        $B8C1..$B9FD : result := 'G';
        $B9FE..$BBF6 : result := 'H';
        $BBF7..$BFA5 : result := 'J';
        $BFA6..$C0AB : result := 'K';
        $C0AC..$C2E7 : result := 'L';
        $C2E8..$C4C2 : result := 'M';
        $C4C3..$C5B5 : result := 'N';
        $C5B6..$C5BD : result := 'O';
        $C5BE..$C6D9 : result := 'P';
        $C6DA..$C8BA : result := 'Q';
        $C8BB..$C8F5 : result := 'R';
        $C8F6..$CBF9 : result := 'S';
        $CBFA..$CDD9 : result := 'T';
        $CDDA..$CEF3 : result := 'W';
        $CEF4..$D188 : result := 'X';
        $D1B9..$D4D0 : result := 'Y';
        $D4D1..$D7F9 : result := 'Z';
      else
       if  word(hzchar[1])<=127 then  result:=hzchar[1] else result:='?';
      end;
    end;{*********在指定的字符串列表SourceStrs中检索符合拼 *********** }
    {**********音索引字符串PYIndexStr的所有字符串,并返回.*********}
    function TRecHouseForm1.SearchByPY(Str, PYIndexStr: string): boolean;
    var
      j,z   :integer;
      hzchar,echar,hz,ec,ss :string;
    begin
         z:=0;
          ss:='';
          for j:=1 to Length(Str) do
            begin
              if word(Str[j])<=127 then
               begin
                inc(z);
                echar:=Str[j];
                ec:=GetPYIndexChar(echar);
                ss:=ss+ec;
                end else
                begin
                hzchar:=Str[2*j-1-z]+ Str[2*j-z];
                if hzchar='雪' then hz:='X' else
                if hzchar='蛏' then hz:='C' else
                if hzchar='煲' then hz:='B' else
                if hzchar='笙' then hz:='S' else
               hz:=GetPYIndexChar(hzchar);
                ss:=ss+hz;
                end;
            end;
          if pos(PYIndexStr,ss)>0 then result := true   else result :=false;
    end;