请教一个VBS程序~我运行后读取的是 A0101 怎么才能去掉前面的A和0啊,直接显示101啊
!读本机“计算机名”
'ReadComputerName.vbs
Dim ReadComputerName
Set ReadComputerName=WScript.CreateObject("WScript.Shell")
Dim ComputerName,RegPath
RegPath="HKLM\System\CurrentControlSet\Control\ComputerName\ComputerName\ComputerName"
ComputerName=ReadComputerName.RegRead(RegPath)
MsgBox("计算机名为"&ComputerName)
我运行后读取的是 A0101 怎么才能去掉前面的A和0啊,直接显示101啊
哪位高手帮帮忙,小弟初学~~