Imagine you have a text string with a hex dump so that each hex number consists of two characters. How would you split this into individual hex numbers? Here is how:
'00AB1CFF' -split '(?<=\G[0-9a-f]{2})(?=[0-9a-f]{2})'
Imagine you have a text string with a hex dump so that each hex number consists of two characters. How would you split this into individual hex numbers? Here is how:
'00AB1CFF' -split '(?<=\G[0-9a-f]{2})(?=[0-9a-f]{2})'