手机
当前位置:查字典教程网 >编程开发 >ASP教程 >CreateKeyWord asp实现的由给定的字符串生成关键字的代码
CreateKeyWord asp实现的由给定的字符串生成关键字的代码
摘要:'**************************************************'函数名:CreateKeyWord'...

'**************************************************

'函数名:CreateKeyWord

'作用:由给定的字符串生成关键字

'参数:Constr---要生成关键字的原字符串

'返回值:生成的关键字

'**************************************************

FunctionCreateKeyWord(byvalConstr,Num)

IfConstr=""orIsNull(Constr)=TrueorConstr="$False$"Then

CreateKeyWord="$False$"

ExitFunction

EndIf

IfNum=""orIsNumeric(Num)=FalseThen

Num=2

EndIf

Constr=Replace(Constr,CHR(32),"")

Constr=Replace(Constr,CHR(9),"")

Constr=Replace(Constr,"","")

Constr=Replace(Constr,"","")

Constr=Replace(Constr,"(","")

Constr=Replace(Constr,")","")

Constr=Replace(Constr,"<","")

Constr=Replace(Constr,">","")

Constr=Replace(Constr,"""","")

Constr=Replace(Constr,"?","")

Constr=Replace(Constr,"*","")

Constr=Replace(Constr,"|","")

Constr=Replace(Constr,",","")

Constr=Replace(Constr,".","")

Constr=Replace(Constr,"/","")

Constr=Replace(Constr,"","")

Constr=Replace(Constr,"-","")

Constr=Replace(Constr,"@","")

Constr=Replace(Constr,"#","")

Constr=Replace(Constr,"$","")

Constr=Replace(Constr,"%","")

Constr=Replace(Constr,"&","")

Constr=Replace(Constr,"+","")

Constr=Replace(Constr,":","")

Constr=Replace(Constr,":","")

Constr=Replace(Constr,"‘","")

Constr=Replace(Constr,"“","")

Constr=Replace(Constr,"”","")

Constr=Replace(Constr,"&","")

Constr=Replace(Constr,"gt;","")

Dimi,ConstrTemp

Fori=1ToLen(Constr)

ConstrTemp=ConstrTemp&"|"&Mid(Constr,i,Num)

Next

IfLen(ConstrTemp)<254Then

ConstrTemp=ConstrTemp&"|"

Else

ConstrTemp=Left(ConstrTemp,254)&"|"

EndIf

ConstrTemp=left(ConstrTemp,len(ConstrTemp)-1)

ConstrTemp=Right(ConstrTemp,len(ConstrTemp)-1)

CreateKeyWord=ConstrTemp

EndFunction

【CreateKeyWord asp实现的由给定的字符串生成关键字的代码】相关文章:

asp 常用的字符串处理函数

asp实现sql的备份与恢复

用ASP创建MDaemon用户的代码

ASP出现不能打开注册表关键字的解决教程

asp中通过getrows实现数据库记录分页的一段代码

在ASP中用组件检测当前网卡地址的代码

由给定的字符串生成关键字

用asp实现的数据库中存取文件的代码

截取实际长度字符串,并用空格替换

asp下tag的实现,简单介绍与部分代码

精品推荐
分类导航