设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 1996|回复: 3
打印 上一主题 下一主题

[模块/函数] 获取汉字首拼音码的二个函数需帮忙改进

[复制链接]
跳转到指定楼层
1#
发表于 2010-3-11 22:25:24 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
Public Function PinYin(Tstr As String) As String
'取的单个汉字拼音首码
Dim I As Long
I = Asc(Tstr)
If I >= Asc("啊") And I < Asc("芭") Then PinYin = "A"
If I >= Asc("芭") And I < Asc("擦") Then PinYin = "B"
If I >= Asc("擦") And I < Asc("搭") Then PinYin = "C"
If I >= Asc("搭") And I < Asc("蛾") Then PinYin = "D"
If I >= Asc("蛾") And I < Asc("发") Then PinYin = "E"
If I >= Asc("发") And I < Asc("噶") Then PinYin = "F"
If I >= Asc("噶") And I < Asc("哈") Then PinYin = "G"
If I >= Asc("哈") And I < Asc("击") Then PinYin = "H"
If I >= Asc("击") And I < Asc("喀") Then PinYin = "J"
If I >= Asc("喀") And I < Asc("垃") Then PinYin = "K"
If I >= Asc("垃") And I < Asc("妈") Then PinYin = "L"
If I >= Asc("妈") And I < Asc("拿") Then PinYin = "M"
If I >= Asc("拿") And I < Asc("哦") Then PinYin = "N"
If I >= Asc("哦") And I < Asc("啪") Then PinYin = "O"
If I >= Asc("啪") And I < Asc("欺") Then PinYin = "P"
If I >= Asc("欺") And I < Asc("然") Then PinYin = "Q"
If I >= Asc("然") And I < Asc("撒") Then PinYin = "R"
If I >= Asc("撒") And I < Asc("塌") Then PinYin = "S"
If I >= Asc("塌") And I < Asc("挖") Then PinYin = "T"
If I >= Asc("挖") And I < Asc("昔") Then PinYin = "W"
If I >= Asc("昔") And I < Asc("压") Then PinYin = "X"
If I >= Asc("压") And I < Asc("匝") Then PinYin = "Y"
If I >= Asc("匝") And I <= Asc("座") Then PinYin = "Z"
End Function

Public Function PinYinList(StrHZ As String) As String
'取得汉字字符串的首位拼音码组合字符串
  Dim I As Integer
  Dim StrTemp As String
  For I = 1 To Len(StrHZ)
     StrTemp = StrTemp & PinYin(Mid(StrHZ, I, 1))
     PinYinList = StrTemp
  Next I
End Function
由于汉字编码的特殊性,以上两个函数只限于一级汉字,请大家帮忙有没有更好的函数解决这一问题,谢谢...
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
2#
 楼主| 发表于 2010-3-12 20:02:23 | 只看该作者
不要沉下去了,问题还没解决呢,自己顶一下...
3#
发表于 2010-3-12 22:24:12 | 只看该作者
northwind的这个函数不好,很多汉字不包括。
4#
 楼主| 发表于 2010-3-13 21:19:30 | 只看该作者
谢谢TZ_CHF,不知道有没有人提供一个更好的函数帮我解决这一问题呢?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-11-18 06:34 , Processed in 0.096779 second(s), 27 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表