create function fun_getPY ( @str nvarchar(4000) ) returns nvarchar(4000) as begin declare @word nchar(1),@PY nvarchar(4000) set @PY='' while len(@str)>0 begin set @word=left(@str,1) --如果非汉字字符,返回原字符 set @[email protected]+(case when unicode(@word) bet
using System; using System.Collections.Generic; using System.Text; namespace AIMSCommon { public class Ctpin { #region 汉字转拼音(完全模式) /// <summary> /// 汉字转拼音(完全模式) /// </summary> #region 字段和属性 //罗马字
sql数据库自定义一个函数把下面代码写进去 功能是得到汉字拼音首字母create function fun_getPY(@str nvarchar(4000)) returns nvarchar(4000) as begin declare @word nchar(1),@PY nvarchar(4000) set @PY='' while len(@str)>0 begin set @word=left(@str,1) --如果非汉字字符,返回原字符 set @[email protected