怎样显示unicode字符
要显示英文音标,已知unicode的编码,如0x91,怎样显示出来?
多谢
问题点数:0、回复次数:6Top
1 楼dingzhaofeng(Alading)回复于 2003-11-01 05:28:35 得分 0
使用ToAnsi(),understand?Top
2 楼lvhy(虚无纠缠着存在)回复于 2003-11-01 10:05:37 得分 0
Description : Converts a character string to an ANSI blob.
Syntax : ToAnsi ( string )
Argument Description : string, A character string you want to convert to an ANSI blob
Return value : Blob. Returns an ANSI blob if it succeeds and an empty blob if it fails.
不懂,能否举个例子?Top
3 楼juwuyi(我有,我可以)回复于 2003-11-01 11:05:36 得分 0
//ToUnicode ( string )
//Return value :
//Blob. Returns a Unicode blob if it succeeds and an empty blob if it fails.
blob lblb_text
string ls_native
ls_native = mle_entry.Text
lblb_text = ToUnicode(ls_native)Top
4 楼lvhy(虚无纠缠着存在)回复于 2003-11-01 11:31:01 得分 0
举个例子,要显示bird的音标,ir 的音标的unicode是0x91(通过字符映射表查到的),怎样显示出来?Top
5 楼juwuyi(我有,我可以)回复于 2003-11-01 11:36:11 得分 0
ToUnicode ( string )
这个只是把字符串转化为Unicode 。至于你要的通过字符映射表查到的我就不太清楚了。
那你应该是 根据 ir 然后 搜索 你那unicode数据库,来得到的。Top
6 楼lvhy(虚无纠缠着存在)回复于 2003-11-01 12:11:09 得分 0
这个思路好像不太对,我又发了一个帖子。
谢谢关注。Top




