作者diomax (小海)
看板EzHotKey
标题[AHK-] 比对MAC ADDRESS
时间Fri Oct 9 00:38:59 2009
因工作需要
所以用AHK写了一个可以比对MAC ADDRESS的小程式
CODE如下
InputBox, MACINPUT, 输入条码, 请输入待测物条码, , 300, 400
RUnWait, cmd /c ipconfig /all > C:\MyCurrentIP.txt,, Hide
FileRead, FileContent, C:\MyCurrentIP.txt
If FileContent contains %MACINPUT%
MsgBox 这是对的!!
else
MsgBox 你错了唷
ExitApp
经过简单的测试 应该是可行
不过却遇到一个问题
在输入的时候
MAC ADDRESS格式是
112233445566
不过IPCONFIG的格式却是
11-22-33-44-55-66
因为格式不同 所以比对的结果都会是错误的
请问这点要怎麽克服阿???
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 116.59.148.118
※ 编辑: diomax 来自: 116.59.148.118 (10/09 00:39)
1F:→ luke93:用RegExMatch把11-22-33-44-55-66变成112233445566 10/11 10:45