With this specific edit, you'll have a hex that has two values in a set of 3, such as:
01 09 A0 when you search for this value, you want to take the first two values, "01", delete it from the start and add it to the end, so your hex would now be:
09 A0 01, the next step is to take the last two values (before you changed it) delete them, and put them at the start, so your hex should now be:
A0 09 01
In simpler terms, you swap the first two values and the last two values around with each other.
I'm trying to understand this better, because I cant seem to find my value after converting it;
I currently have 75226 R; Which in HEx Should be 01 25 DA
If i understand your directions, I should be searching for: DA 25 01
Is that correct? (it seems like all you need to do is swap the beginning and the end values, leaving the middle alone...)