码迷,mamicode.com
首页 >  
搜索关键字:upper    ( 2194个结果
查询表数据的时让表内数据全大写、小写、首字母大写、前几位字母大写
selectUpper(Substring(列名, 1, 1)) + Lower(Substring(列名, 2,LEN(列名))) AS 想显示的列名,UPPER(列名) AS想显示的列名,Upper(Substring(列名, 1, 6)) + Substring(列名, 7,LEN(列名)) ...
分类:其他好文   时间:2014-05-01 21:34:46    阅读次数:449
linux学习:常用shell语句
一、正则表达式的使用 cd /usr/share/dict 1、找出words文件下所有以a开头t结尾的单词 egrep "^a.*t$" words 2、匹配以abcde开头,以at结尾的单词 egrep "\" words 3、以大写字母开头,以t结尾 egrep "^[[:upper:]]t$" words 二、管道的使用 egrep "^a.*t$" words|wc -...
分类:系统相关   时间:2014-04-30 22:32:38    阅读次数:372
随机产生数组
class CArray { private int[] arr; //声明了一私有个数组,并没有实例化,数组只有引用地址(只在栈内存中存在) private int upper; //声明私有变...
分类:其他好文   时间:2014-04-30 05:03:55    阅读次数:354
Timus 1601. AntiCAPS 修正大写句子
The blonde Angela has a new whim: internet chats. Of course, as any blonde, she writes her messages using the upper case. You are the moderator of Angela's favorite chat and you're fed up with her upp...
分类:其他好文   时间:2014-04-29 13:17:21    阅读次数:293
2194条   上一页 1 ... 218 219 220
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!