- 博客(3)
- 收藏
- 关注
转载 替代数据库字段中的某个字符串
update [PEServer].[dbo].[SopStateList] set 适用范围=replace(适用范围,'1~2','1/2') where 适用范围 like '%1~2%'
2016-05-11 15:28:55 216
原创 10万以内数字转换为中文小写
private string convertnumber(int number) { string[] Ls_ShZ = { "〇", "一", "二", "三", "四", "五", "六", "七", "八", "九" }; string[] Ls_DW_Zh = { "十", "百", "千", "万" };
2015-10-30 11:58:36 819
转载 string 类型的使用方法
string a = "hello world!"; string b = a.Substring(6); //获取下标为6以后的全部字符。 string c = a.Substring(6, 2); //获取下标为6以后的2个字符。 Console.WriteLine(b); C
2015-10-30 11:40:00 281
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人