Inno Setup 脚本中的基本 IP 验证
当我收集用户输入时,如何检查它是否是 IP 地址?
When I collect input from a user, how can I check to see if it's an IP address?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
当我收集用户输入时,如何检查它是否是 IP 地址?
When I collect input from a user, how can I check to see if it's an IP address?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
IP 地址(假设您指的是 IPv4)实际上是一个整数,但通常写为由
.
分隔的四个数字。每个数字都代表整数的一个字节值,因此每个数字都应该是 0 到 255(含)之间的数字。An IP Address (assuming you mean IPv4) is actually an integer, but it is usually written as four numbers separated by a
.
. Each of those numbers represent a byte value of the integer, so each of the numbers should be a number between 0 and 255 (incl).我修改了代码,现在你可以将它与 Inno setup 一起使用:
I modified the code and now it you can use it with Inno setup: