VBScript Function to Convert an Integer to Binary String Represe

  • 时间:2020-09-17 10:57:36
  • 分类:网络文摘
  • 阅读:121 次

Given a Integer, we want to convert it to binary string. We can do this iteratively, by concatenating the modulus by two result and shifting the number 1 position to the right. We also need to check if it is negative number and appending a ‘-‘ sign before the result accordingly.

Implementing the ToBinaryString in VBScript is as follows. The zero is a special case. And to shift an integer one position to the right. We can use the Int(Num/2). The CInt() function will round up the values for example, CInt(3.5) is 4. Thus the Int() function in VBScript is equivalent to the Floor Function.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Function ToBinaryString(ByVal Num)
    Dim s, sign: sign = ""
    If Num < 0 Then 
        sign = "-"
        Num = -Num
    ElseIf Num = 0 Then
        ToBinaryString = "0"
        Exit Function
    End If
    While Num > 0
        s = Chr(48 + (Num Mod 2)) & s
        Num = Int(Num / 2)
    Wend 
    ToBinaryString = sign & s
End Function
Function ToBinaryString(ByVal Num)
	Dim s, sign: sign = ""
	If Num < 0 Then 
		sign = "-"
		Num = -Num
	ElseIf Num = 0 Then
		ToBinaryString = "0"
		Exit Function
	End If
	While Num > 0
		s = Chr(48 + (Num Mod 2)) & s
		Num = Int(Num / 2)
	Wend 
	ToBinaryString = sign & s
End Function

The results are shown in the VBSEdit IDE – and you can verify a few integers from negative 15 to positive 15, respectively.

vbscript-convert-integer-to-binary-in-vbsedit VBScript Function to Convert an Integer to Binary String Representation vbscript

vbscript-convert-integer-to-binary-in-vbsedit

–EOF (The Ultimate Computing & Technology Blog) —

推荐阅读:
诗词名句鉴赏:我所思兮在太山,欲往从之梁父艰。  诗词名句鉴赏:大风起兮云飞扬,威加海内兮归故乡。  百家讲坛系列节目《于丹〈庄子〉心得》MP3蓝奏云下载  诗词名句鉴赏:男儿爱后妇,女子重前夫。  诗词名句鉴赏:居异土国兮心内伤,愿为黄鹄兮归故乡。  子革对灵王原文及翻译  写人作文乐趣作文900字  关于都江堰的写景作文  有位置随便坐作文650字  不一样的端午节作文 
评论列表
添加评论