如何取得汉字的第一个字母(50分)

  • 主题发起人 xue68111803
  • 开始时间
X

xue68111803

Unregistered / Unconfirmed
GUEST, unregistred user!
如何取得汉字的第一个字母
 
找ID=[400243],482114有
 
http://wolfsoft.nugoo.com/srcsearch.asp
 
也可以把拼音输入法的库转换出来,动态查找!
 
http://www.star-dragon.com下载拼音的数据库
 
多的很,全文检索一下吧,以前我帖出来过
不想再找了。
 
汉字有字母吗?
 
真的是很多的。
别人编的,我贴给你,免去你查找的麻烦:
---- 程序更简单,包括3个控件:一个列表存放着所有待检索的信息;一个列表用于存放检
索后的信息;一个编辑框用于输入检索关键字(即拼音首字符序列)。详细如下:
---- 1.进入Delphi创建一个新工程:Project1
---- 2.在Form1上创建以下控件并填写属性:
控件类型 属性名称 属性值
Edit Name Search
ListBox Name SourceList
Items 输入一些字符串,如姓名等,用于提供检索数据
ListBox Name ResultList
---- 3.键入以下两个函数
// 获取指定汉字的拼音索引字母,如:“汉”的索引字母是“H”
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;

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

---- 5.编译运行后,在编辑框Search中输入要查询字符串的拼音首字符序列,检索结果列
表ResultList就会列出检索到的信息,检索中还支持“?”通配符,对于难以确定的的文字
使用“?”替代位置,可以实现更复杂的检索。
 
假设edit1.text中的第一个是汉字

这第一个汉字的的字母是
var
strTemp :string;
begin
strTemp=Edit1.Text;
strTemp[1]就是该汉字第一个字母
strTemp[2]就是该汉字的第二个字母
end;
 
顶部