正则表达式匹配 Tcl 中的偶数十六进制数字?
有没有办法编写一个 Tcl 正则表达式来验证字符串是否是偶数的十六进制数字?
Is there away to write a Tcl regex to verify that a string is a hex number that is even?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个 tcl 代码将完成这项工作:
请注意,a、c 和 e 也是偶数,并且您需要 -nocase 来匹配 af 和 AF。
This tcl code will do the work:
Note that a, c and e are also even numbers and that you need -nocase to match a-f as well as A-F.
它需要是正则表达式吗?
Does it need to be a regex?