时间:2021-05-18
复制代码 代码如下:
'把字符串转换成数据库SQL语句格式
'-------------------------------------------------
FunctionAllStr2Database(str,strType)
DimstrTemp:strTemp=str
SelectCasestrType
Case""
Case"num"
strTemp=Clng(strTemp)
Case"string"'无Trim
strTemp=Replace(strTemp,"'","''")
Case"str_br"'无Trim,把回车转换为<br>,一般用于多行文本输入
strTemp=Replace(Replace(strTemp,"'","''"),VbCrlf,"<br>")
Case"str_trim"'Trim
strTemp=Replace(Trim(strTemp),"'","''")
Case"nums"
strTemp=Trim(strTemp)
strTemp=Replace(strTemp,")","")
strTemp=Replace(strTemp,"(","")
strTemp=Replace(strTemp,"'","")
strTemp=Replace(strTemp,";","")
strTemp=Replace(strTemp,"","")
strTemp=Replace(strTemp,"or","")
strTemp=Replace(strTemp,"and","")
strTemp=Replace(strTemp,"delete","")
strTemp=Replace(strTemp,"select","")
strTemp=Replace(strTemp,"exec","")
strTemp=Replace(strTemp,"update","")
strTemp=Replace(strTemp,"select","")
Case"strings"
CaseElse
EndSelect
AllStr2Database=strTemp
EndFunction
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
js字符串转换成数字将字符串转换成数字,得用到parseInt函数。parseInt(string):函数从string的开始解析,返回一个整数。举例:pars
本文实例讲述了javascript实现的字符串转换成数组操作。分享给大家供大家参考,具体如下:www.jb51.net字符串转换成数组varstr="abcde
写的json转换成数组的一个类和方法,实际上写的方法可以把大部分包含json字符串的数据结构转换成数组,上代码:复制代码代码如下:classantiTranJs
error:function(msg){//声明错误throwmsg;},parseJSON:function(data){//把字符串转换成json格式if(
json(JavaScriptObjectNotation):轻量级的数据交换(交换的数据转换成与平台无关的)格式java对象转换成json字符串,使用Obje