substr(字符串,截取开始位置,截取长度) //返回截取的字符串(包含开始位置)select substr('HelloWorld',0,3) value from dual; --返回结果为 Hel
select substr('HelloWorld',1,3) value from dual; --返回结果为 Hel ,0和1都是表示从第一个字符还是截取
select substr('He...
分类:
数据库 时间:
2015-05-25 22:25:34
阅读次数:
250
下面这个例子中,字段都是固定宽度的,但没有使用字段分隔符。substr函数可以用来创建字段。
范例
$ cat fixed
031291ax5633(408)987-0124
021589bg2435(415)866-1345
122490de1237(916)933-1234
010187ax3458(408)264-2546
092491bd9923(415)134-89...
分类:
其他好文 时间:
2015-05-14 22:07:32
阅读次数:
130
substr函数 substr函数返回从字符串指定位置开始的一个子串。如果指定了子串的长度,则返回字符串的相应部分。如果指定的长度超出了字符串的实际范围,则返回其实际内容。
格式
substr(字符串,起始位置)
substr(字符串,起始位置,子串长度)
范例
$ awk '{print substr("Santa Claus",7,6)}' filename...
分类:
其他好文 时间:
2015-05-11 21:58:14
阅读次数:
121
使用Oracle中Instr()和substr()函数:在Oracle中可以使用instr函数对某个字符串进行判断,判断其是否含有指定的字符。其语法为:instr(sourceString,destString,start,appearPosition). instr('源字符串' , '目标字.....
分类:
数据库 时间:
2015-05-11 12:19:55
阅读次数:
214
Cutting Banner
Time Limit:2000MS Memory Limit:262144KB 64bit IO Format:%I64d
& %I64u
Submit Status
Description
A large banner with word CODEFORCES was ordered for the 1000-th o...
分类:
其他好文 时间:
2015-05-01 17:28:00
阅读次数:
159
官方参考文档:SQLite Query Language: Core Functionshttp://www.sqlite.org/lang_corefunc.html测试SQL语句:SELECT substr('2012-12-12 10:11:12 fff',0,20) AS substr_0_...
分类:
数据库 时间:
2015-04-07 13:30:11
阅读次数:
151
C语言标准库中没有 int substr(char *s1, char *s2)/*字符串匹配,成功返回所在位置,不成功返回-1*/ 函数,下面是利用已有的库函数自己实现的substr函数。代码如下: 1 #include 2 3 #include 4 5 int substr(char *...
分类:
其他好文 时间:
2015-03-02 16:43:55
阅读次数:
128
strlen函数语法:strlen(string)定义和用法:strlen() 函数返回字符串的长度。substr函数语法:substr(string,start,length)定义和用法:substr() 函数返回字符串的一部分。参数描述string:必需。规定要返回其中一部分的字符串。start...
分类:
其他好文 时间:
2015-03-02 00:56:26
阅读次数:
145
需求:有一列NAME, varchar2类型,内容如下以上就是已经按order by name进行排序的,但不是我们所需要的结果现在需要只按数字进行排序第一步:抽取数字由于数字有是一位的有是两位的 所以不好用substr进行截取我们可以使用REGEXP_SUBSTR函数,使用正则表达式从字符串中抽取子串。REGEXP_SUBSTR(name, '[0-9]+')第二步、将varchar类型的数字转...
分类:
数据库 时间:
2015-02-27 22:59:55
阅读次数:
240
原文地址:http://blog.csdn.net/no_retreats/article/details/7853066C++中substr函数的用法#include#includeusingnamespacestd;main(){strings("12345asdf");stringa=s.su...
分类:
编程语言 时间:
2015-02-10 11:00:57
阅读次数:
178