function TForm1.GetPinYinChar(ChnChar:string):char;//ChnChar是单个汉字,
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; 

解决方案 »

  1.   

    function chinacodetoabc(StrEditText: string): string;
    var
    StrResult:string;
    I,J,intEditTextlength:integer;
    WdcodeNumber:word;
    begin
    StrResult:='';
    I:=1;
    intEditTextlength:=length(StrEditText);
        while (I<=intEditTextlength) do
        begin
           if (ord(StrEditText[I])>=160) and (ord(StrEditText[I+1])>=160) then
           begin
                 WdcodeNumber:=(ord(StrEditText[I])-160)*100+ord(StrEditText[I+1])-160;
                 J:=0;
                 while (J<=25) do
                 begin
                      if (WdcodeNumber>=chinacode[J,0]) and (WdcodeNumber<=chinacode[J,1]) then
                      begin
                      StrResult:=StrResult+chr(J+ord('A'));
                      break;
                      end;
                      J:=J+1;
                  end;
                  I:=I+2
           end else
           begin
               StrResult:=StrResult+uppercase(StrEditText[I]);   //英文代码
               I:=I+1;
           end;
        end;
    Result:=StrResult;
    End;
      

  2.   

    To cobi:
       可以给我一份么?谢谢
       [email protected]
      

  3.   

    me too 
    [email protected]
      

  4.   

    要要要
    我的EMAIL:
    [email protected]
      

  5.   

    真的会发,我担心你会累坏的:)
    不过我还是留下我的eami:[email protected]
      

  6.   

    贴子结了算了,
    用的是
    function 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(32);
      end;
    end;
      

  7.   

    大家好!在edit中输入拼音后,我需要从dbgrid(源是SQL)中去查找符合拼音条件的单位名(dw是SQL的一个字段),并将符合条件的记录显示在listbox1中,不知道应该怎么改,请帮助!一定给分!!