如何解决拼音输入问题?(50分)

  • 主题发起人 主题发起人 bryanliu
  • 开始时间 开始时间
B

bryanliu

Unregistered / Unconfirmed
GUEST, unregistred user!
以下这段代码可以实现用汉字拼音的首字符实现在
一个数组内查找数据。
比如:输入h,则把拼音是h开头的汉字都检索出来了

问题是:有些汉字就没办法查找到,应该是汉字内码
的范围不完整,谁可以修改呢?


Edit Name Search
ListBox Name SourceList
Items 输入一些字符串,如姓名等,用于提供检索数据
ListBox Name ResultList


// 获取指定汉字的拼音索引字母
function 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;

// 在指定的字符串列表SourceStrs中检索符合拼音索引字符串PYIndexStr的所有字符串,并返回。
function 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[2*j-1] + SourceStrs[2*j];
if (PYIndexStr[j]<>'?') and
(UpperCase(PYIndexStr[j]) <> GetPYIndexChar(hzchar)) then
goto NotFound;
end;
if result='' then
result := SourceStrs
else
result := result + Char(13) + SourceStrs;
NotFound:
end;
end;

//增加编辑框Search的OnChange事件:
procedure TForm1.SearchChange(Sender: TObject);
var
ResultStr:string;
begin
ResultStr:='';
ResultList.Items.Text := SearchByPYIndexStr(Sourcelist.Items, Search.Text);
end;

 
解决问题的思路是:
1。用程序生成汉字
2。用输入法程序反查拼音,得到范围
 
你的枚举不完整:我的程序如下:需要安装微软拼音输入法
查出拼音的汉字在RIGHT。TXT 查不出的在ERROR。TXT
function QueryCompStr(hKB: HKL; const sChinese: AnsiString): string;
var
dwGCL: DWORD;
szBuffer: array[0..254] of char;
iMaxKey, iStart, i: integer;
begin
Result := '';
iMaxKey := ImmEscape(hKB, 0, IME_ESC_MAX_KEY, nil);
if iMaxKey <= 0 then exit;

dwGCL := ImmGetConversionList(
hKB,
0,
pchar(sChinese),
nil,
0,
GCL_REVERSECONVERSION);
if dwGCL <= 0 then Exit;
dwGCL := ImmGetConversionList(
hKB,
0,
pchar(sChinese),
@szBuffer,
dwGCL,
GCL_REVERSECONVERSION);

if dwGCL > 0 then
begin
iStart := byte(szBuffer[24]);
for i := iStart to iStart + iMaxKey * 2 do
AppendStr(Result, szBuffer);
end;
end;

procedure WriteError(i,j : integer;strWord : string;CurrChar : char);
var
ErrorFile : TextFile;
begin
AssignFile(ErrorFile,'Error.Txt');
if FileExists('Error.Txt') then
Append(ErrorFile)
else
ReWrite(ErrorFile);
WriteLn(ErrorFile,i,'#',j,'#',strWord,'#',CurrChar);
CloseFile(ErrorFile);
end;
procedure WriteRight(i,j : integer;strWord : string;CurrChar : char);
var
RightFile : TextFile;
begin
AssignFile(RightFile,'Right.Txt');
if FileExists('Right.Txt') then
Append(RightFile)
else
ReWrite(RightFile);
WriteLn(RightFile,i,'#',j,'#',strWord,'#',CurrChar);
CloseFile(RightFile);
end;

procedure TForm1.Button1Click(Sender: TObject);
var
strName : string;
strReve : string;
LastChar: char;
CurrChar: char;
i,j,k : Byte;
hwnKL : HKL;
iHandleCount : Integer;
pList: array[1..10] of HKL;
szImeName: array[0..254] of char;
headchar : set of 'a'..'z';
begin
LastChar :=chr(0);
CurrChar :=chr(0);
iHandleCount := GetKeyboardLayoutList(10, pList);
for k := 1 to 10 do
if ImmEscape(pList[k], 0, IME_ESC_IME_NAME, @szImeName)>0 then
if szImeName= '微软拼音输入法' then
break;
for i := 128 to 255 do
for j := 128 to 255 do
begin
strName := chr(i)+chr(j);
strReVe :=QueryCompStr(pList[k],strName);
CurrChar := strReve[1];
if not(CurrChar in headchar) then
begin
WriteError(i,j,strName,CurrChar);
end
else
begin
//if not(CurrChar=LastChar) then
WriteRight(i,j,strName,CurrChar);
end;
LastChar := CurrChar;
end;
end;
 
对后面一段程序做个修改:
procedure TForm1.Button1Click(Sender: TObject);
var
strName : string;
strReve : string;
LastChar: char;
CurrChar: char;
i,j,k : Byte;
hwnKL : HKL;
iHandleCount : Integer;
pList: array[1..10] of HKL;
szImeName: array[0..254] of char;
headchar : set of 'a'..'z';
begin
LastChar :=chr(0);
CurrChar :=chr(0);
headchar := ['a'..'z'];
iHandleCount := GetKeyboardLayoutList(10, pList);
for k := 1 to 10 do
if ImmEscape(pList[k], 0, IME_ESC_IME_NAME, @szImeName)>0 then
if szImeName= '微软拼音输入法' then
break;
for i := 128 to 255 do
for j := 128 to 255 do
begin
strName := chr(i)+chr(j);
strReVe :=QueryCompStr(pList[k],strName);
if strReve='' then
CurrChar := '@'
else
CurrChar := strReve[1];
if (CurrChar in headchar) then
begin
//if not(CurrChar=LastChar) then
WriteRight(i,j,strName,CurrChar);
end
else
begin
WriteError(i,j,strName,CurrChar);
end;
LastChar := CurrChar;
end;
end;
 
编译时无法通过immescape等windows api函数,
怎么回事?
 
uses unit Imm;应该可以了,对生成文本的说明:
RIGHT。TXT
129-128-亐-y
129-129-亖-s
129-130-亗-s
129-131-亙-g
129-132-亜-y
129-133-亝-q
汉字编码第一字节----汉字编码第二字节--------汉字--------拼音
strReVe是返回的拼音码,可以使用他得到你所需要的东西,组成一个编码表
我看过次序很乱,基本没有规律
ERROR。TXT 是查不到拼音的字
 
接受答案了.
 
后退
顶部