根据汉字获取拼音

function getPY(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';
    $D189..$D4D0:result := 'Y';
    $D4D1..$D7F9:result := 'Z';
  else
    Result := char(32);
  end;
end;

//测试
procedure TForm1.Edit2Change(Sender: TObject);
var
  i: integer;
  hz: string;
begin
  edit1.Text := '';
  for i := 1 to length(edit2.text) div 2 do
  begin
    hz := copy(edit2.Text, i * 2 - 1, 2);
    edit1.Text := edit1.Text + getpy(hz);
  end;
end;

 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值