0 thenChkPage=true '页面返回成功exit functionend ifif Instr(SourceCode,ErrKey) > 0 thenChkPage=false '页面出错exit functionend ifChkPage=false 'keyword信息不正确或者是....
分类:
其他好文 时间:
2014-07-31 16:44:06
阅读次数:
208
oracle方法 CREATE?OR?REPLACE?FUNCTION?IpToLong(ip?in?varchar2)
return?number?is??
p1?number;?
p2?number;?
p3?number;
??begin??
????p1?:=?instr(ip,?‘.‘,?1,?1);??
???...
分类:
其他好文 时间:
2014-07-22 08:13:37
阅读次数:
203
1 instr(objClob,objstr,beginIndex,appearIndex)objClob:带检索目对象,可以是clob,stringobjstr: 需要验证的字符串beginIndex: 开始检索位置,默认从1开始appearIndex: 出现的位置,默认为1select inst...
分类:
数据库 时间:
2014-07-07 09:10:02
阅读次数:
313
转自:http://blog.csdn.net/jyh_jack/article/details/2315345mid(字符串,从第几个开始,长度)
在[字符串]中[从第几个开始]取出[长度个字符串] 例如 mid("小欣无敌",1,3) 则返回 "小欣无"instr(从第几个开始,字符串1,字符串...
分类:
其他好文 时间:
2014-05-23 03:00:37
阅读次数:
194
在Oracle/PLSQL中,instr函数返回要截取的字符串在源字符串中的位置。instr是一个非常好用的字符串处理函数,几乎所有的字符串分隔都用到此函数。。语法如下:
instr( string1, string2, start_position,nth_appearance ) strin.....
分类:
其他好文 时间:
2014-05-16 03:33:52
阅读次数:
262
QTP自学攻略
自学总是很痛苦的,看大量的书籍,可是学到的东西却不是那么实用,下面整理了一些在QTP中经常需要的函数,以及方法很实用!QTP常用函数1, 获取对话框相应的文字:
GetVisible Text2, 查找相应的字符串: instr (1,查找目标字符串,所查找的字符串)3, 随机数的....
分类:
其他好文 时间:
2014-05-15 21:23:39
阅读次数:
308
Option Explicit
Function stripHTML(strtext)
dim arysplit,i,j, strOutput
arysplit=split(strtext,"
if len(arysplit(0))>0 then j=1 else j=0
for i=j to ubound(arysplit)
if instr(arysplit(i),">") ...
分类:
其他好文 时间:
2014-05-11 21:56:06
阅读次数:
355
INSTR (源字符串, 目标字符串, 起始位置, 匹配序号)
在Oracle/PLSQL中,instr函数返回要截取的字符串在源字符串中的位置。只检索一次,就是说从字符的开始 到字符的结尾就结束。 语法如下: instr(
string1, string2 [, start_positi...
分类:
数据库 时间:
2014-05-09 13:13:34
阅读次数:
358
SELECT A.TABLE_NAME 表英文名, A.TAB_COMMENTS 表中文名,
A.COLUMN_ID 序号, A.COLUMN_NAME 英文名, A.COMMENTS 中文名, B.PRIMARY_KEY 主键,
substr(A.DATA_TYPE,1,instr(A.DATA_...
分类:
数据库 时间:
2014-05-08 19:25:11
阅读次数:
415
select * from sys_role_list where id in (select c
from (with test as (select roleid c from sys_role_info where id=1) select
substr(t.ca,instr(t.ca,...
分类:
数据库 时间:
2014-05-01 02:34:49
阅读次数:
670