Created
February 10, 2020 05:02
-
-
Save taylus/b4aadae13d2ee7c91557a3fcadcaeae1 to your computer and use it in GitHub Desktop.
Regex to turn AA BB CC DD into 0xAA, 0xBB, 0xCC, 0xDD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Find what: ([0-9A-Fa-f])([0-9A-Fa-f]) | |
| Replace with: 0x\1\2, | |
| Search mode: Regular expression |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment