【发布时间】:2021-05-29 09:49:14
【问题描述】:
不确定如何使用正则表达式在十六进制编辑器中查找某个十六进制字符串之后的所有匹配项:我目前正在使用的十六进制 writer = 010 编辑器的示例。 正在查询:0201010420
在十六进制编辑器中打开C盘:
02 01 01 04 20 (32 extra bytes any)
例子:
**02 01 01 04 20** 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
'''
^^^ -> CTRL + F -> regular expression > ????
How do I use regex to search for that occurrence of 02 01 01 04 20 and to grab the next 64 or more specifically say (32 bytes) and to find all occurrences of that. I want to do this to copy it to a text editor for use.
【问题讨论】: