西里尔文域名

时间:2010-11-26 12:54:51

标签: delphi

1 个答案:

答案 0 :(得分:10)

我在这里写了一个punycode编码器/解码器:

http://code.google.com/p/delphionrails/source/browse/trunk/src/dorPunyCode.pas

用法:

function PEncode(const str: UnicodeString): AnsiString;
var
  len: Cardinal;
begin
  Result := '';
  if (PunycodeEncode(Length(str), PPunyCode(str), len) = pcSuccess) and (Length(str) + 1 <> len) then
  begin
    SetLength(Result, len);
    PunycodeEncode(Length(str), PPunyCode(str), len, PByte(Result));
    Result := 'xn--' + Result;
  end else
    Result := AnsiString(str);
end;

Format('http://%s.%s', [PEncode('президент'), PEncode('рф')]);