tointeger 相关的软件列表

ASP字符串转换为整形、双精度型、布尔
ASP

ASP字符串转换为整形、双精度型、布尔

2020-02-16 标签:asp,字符串,转换,整形,精度,布尔,rem,数据,function,tointeger,str,n,um,trim,ot,isnumeric,else,clng

Rem 将字符串转换为整形数据 function toInteger(str,num)str=trim(str)if str="" or not isnumeric(str) thentoInteger=numelsetoInteger=clng(str)end if end function Re