create function fun_getPY ( @str nvarchar(4000) )returns nvarchar(4000)asbegin declare @word nchar(1),@PY nvarchar(4000) set @PY='' while len(@...
分类:
数据库 时间:
2014-06-28 12:58:14
阅读次数:
225
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace Common 7 { 8 //Author:GaoBin...
分类:
其他好文 时间:
2014-06-27 20:20:08
阅读次数:
362
汉字转拼音的库主要是:pinyin https://github.com/hotoo/pinyinPYMethod https://github.com/a85816841/PotentialGragonSnail/tree/master/ql/lib/pinyingPOAPinyin h...
分类:
移动开发 时间:
2014-06-27 13:31:58
阅读次数:
232
delphi汉字转拼音 2009-09-21 10:44:59| 分类: 计算机知识 |举报 |字号 订阅unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, F...
分类:
其他好文 时间:
2014-06-21 15:58:46
阅读次数:
494
pinyin4j是一个支持将简体和繁体中文转换到成拼音的Java开源类库,作者是Li Min (xmlerlimin@gmail.com)。以下是一些具体的介绍和使用方式。1.pinyin4j的官方下载地址http://sourceforge.net/projects/pinyin4j/files/...
分类:
编程语言 时间:
2014-06-15 21:13:15
阅读次数:
290
前段时间公司人员反应OA里的汉字拼音首字母不准他们又要用,没办法自己就从网上搜有没有好的,看了很多都是首字母拼不出来或有些字母变为另一个,但最后找了很多还是有一个好用的,暂未发现有不准的。using System;using System.Collections.Generic;using Syst...
分类:
Web程序 时间:
2014-06-15 12:58:41
阅读次数:
214
汉字转拼音using System;using System.Data;using
System.Configuration;using System.Text;/// /// Summary description for
ConvertHzToPz_Gb2312/// namespace Com...
分类:
其他好文 时间:
2014-06-11 22:21:09
阅读次数:
1678
方法一:根据ASCII码转换,GB2312库对多音字也无能为力。GB2312标准共收录6763个汉字,不在范围内的汉字是无法转换,如:中国前总理朱镕基的“镕”字。GB2312中对所收汉字进行了“分区”处理,每区含有94个汉字/符号。这种表示方式也称为区位码。01-09区为特殊符号。16-55区为一级汉字,按拼音排序。(3755个)56-87区为二级汉字,按部首/笔画排序。(3008个)10-15区...
分类:
Web程序 时间:
2014-05-15 06:50:21
阅读次数:
590