名称:sort
位置:/usr/bin/sort
权限:所有用户
用法: sort [OPTION]... [FILE]...
sort [OPTION]... --files0-from=F
选项:
-b --ignore-leading-blanks 忽略最前面的空格
-f --ignore-case fold lower case to upper case characters 忽略字母的大小写
...
分类:
系统相关 时间:
2015-01-09 09:20:23
阅读次数:
269
有关于查找基本的库函数有find(),find_if,binary_search(),lower_bound(),upper_bound(),equal_range()另外bind1st(greater,15),bind2nd(greater,15),greater(15,x),count_if()...
分类:
其他好文 时间:
2015-01-08 14:43:06
阅读次数:
156
--字符函数--upper()将字符转换为大写--lower()将字符转换为小写SELECT UPPER('liunan'),LOWER('LIUNAN')FROM dual;--查询SMITH的信息,写smith写成小写,用UPPER转换为大写SELECT *FROM emp eWHERE e.e...
分类:
其他好文 时间:
2015-01-07 12:44:41
阅读次数:
154
字符串操作在任何语言中都很常用。 本文列举了一些常见的Python/c++ 对字符串的操作。 c++ 的使用了boost libraray, 所涉及到的函数都在 中定义。pythonc++大小写转换'str'.upper(), 'str'.lower()boost::to_upper('str'),...
分类:
编程语言 时间:
2015-01-06 23:01:16
阅读次数:
286
array_change_key_case( $arr ,CASE_LOWER || CASE_UPPER) 返回键名全为大写或者是小写的数组 array_rand($arr , num) 从数组中随机取出一个或多个单元 shuffle(&$arr) ? 将数组打乱 array_chunk($arr , $size ,...
分类:
编程语言 时间:
2015-01-06 18:22:21
阅读次数:
217
Oracle函数有字符函数、数学函数、日期函数和转换函数。我只了解了字符函数和数学函数。一、字符函数:lower(char)将字符串转化为小写的格式SQL>selectlower(ename),enamefromemp;LOWER(ENAME)ENAME----------------------smithSMITHallenALLENwardWARDupper(char)将字符..
分类:
数据库 时间:
2015-01-06 18:12:23
阅读次数:
221
#include
#include
#include
//const char lower_chars[] = "abcdefghijklmnopqrstuvwxyz";
//const char upper_chars[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
//const char number_chars[] = "0123456789";...
分类:
其他好文 时间:
2015-01-05 16:39:16
阅读次数:
138
获取默认文件名SQL如下:--第1种
SELECTu_Dump.Value||‘/‘||Lower(Db_Name.Value)||‘_ora_‘||
V$process.Spid||
Nvl2(V$process.Traceid,‘_‘||V$process.Traceid,NULL)||‘.trc‘"TraceFile"
FROMV$parameteru_Dump
CROSSJOINV$parameterDb_Name
CROSSJOINV$process
JOINV$sessio..
分类:
数据库 时间:
2015-01-04 19:32:34
阅读次数:
201
Equilibrium index of an array is an index such that the sum of elements at lower indexes is equal to the sum of elements at higher indexes. For exampl...
分类:
其他好文 时间:
2015-01-03 07:03:25
阅读次数:
264
#coding=utf-8#python中字符串的操作# 字符串的大小写s='hello_wOrld_oF_you'upper_str = s.upper() print('全部大写: ',upper_str)lower_str = s.lower()print('全部小写: ',lower_st....
分类:
编程语言 时间:
2015-01-01 17:17:53
阅读次数:
176