匹配十六进制字符串 GAWK
我想使用 gawk 匹配 32 个字符的十六进制字符串。
我发现我可以使用 /[A-F0-9]{32}/ ,但前提是我使用 --posix 或 --re 运行 gawk
是否有没有命令行选项的替代方案? (除了重复 [A-F0-9] 32 次!)
I want to match a 32 character hex string using gawk.
I've found that I can use /[A-F0-9]{32}/ , but only if I run gawk with --posix or --re
Is there any alternative without command line options? (aside from repeating [A-F0-9] 32 times!)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么样
how about