gpt4 book ai didi

vbscript - 将字符串转换为整数

转载 作者:行者123 更新时间:2023-12-02 16:26:51 25 4
gpt4 key购买 nike

PrinterLabel = Printer + PrinterNumber

If Floors = 1 And (PrinterLabel) > 127 Then
Wscript.Echo "Invalid Printer11 Selection "
Wscript.Quit
End If

If Floors = 2 And PrinterLabel > 220 Then
Wscript.Echo "Invalid Printerss Selection "
Wscript.Quit
End If

问题是 PrinterLabel 是一个 String,我想将其转换为 Int 并进行比较。

PrinterLabel 是一个字符串,也是一个数字“218”

有什么建议吗?

最佳答案

您需要的函数是CInt

CInt(PrinterLabel)

参见Type Conversion Functions MSDN 上的 (Visual Basic)

编辑:请注意,CInt 及其亲属在 VB.net 和 VBScript 中的行为不同。例如,在 VB.net 中,CInt 转换为 32 位整数,但在 VBScript 中,CInt 转换为 16 位整数。留意潜在的溢出!

关于vbscript - 将字符串转换为整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8945165/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com