时间:2021-05-28
Rem将字符串转换为整形数据
functiontoInteger(str,num)
str=trim(str)
ifstr=""ornotisnumeric(str)then
toInteger=num
else
toInteger=clng(str)
endif
endfunction
Rem将字符串转换为双精度型数据
functiontoDouble(str)
str=trim(str)
ifstr=""ornotisnumeric(str)then
toDouble=0.0
else
toDouble=cdbl(str)
endif
endfunction
Rem将字符串转换为布尔数据
functiontoBoolean(str)
str=lcase(trim(str))
ifstr="true"orstr="t"then
toBoolean=true
elseifisnumeric(str)then
ifclng(str)<>0thentoBoolean=true
else
toBoolean=false
endif
endfunction
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#字符串数组转换为整形数组的方法。分享给大家供大家参考。具体实现方法如下://////字符串数组转换整形数组//////字符串数组///publ
任何语言都需要数据类型之间的转换,ASP当然也不例外,下面就给出ASP中的类型转换函数(1)Cbool(string)将字符串值转换为布尔值(2)Cbyte(s
当转换为boolean时,以下值被认为是FALSE:the布尔值FALSE自身the整型值0(零)the浮点型值0.0(零)空字符串,以及字符串"0"不包括任何
Python2.6之前:字符串转换为整形和浮点型>>>importstring>>>string.atoi('34.1')34>>>string.atof(‘3
1、转换为字符串''+10==='10';//true将一个值加上空字符串可以轻松转换为字符串类型。2、字符串转换为数字+'010'===10Number('0