3

I have a string representing a hexidecimal value: "46-C9-08-B6-E8-F3-47-CF-53-2A-77-02-C9-19-7F"

I want to convert this to a byte array so it looks something like this: {&H46, &HC9, &H8, &HB6, &HE8, &HF3, &H47, &HCF, &H53, &H2A, &H77, &H2, &HC9, &H19, &H7F}

How do I do this?

Dan J
  • 16,319
  • 7
  • 50
  • 82
user2089227
  • 59
  • 1
  • 1
  • 3

1 Answers1

2

Split the string and parse the hexadecimal numbers:

Dim bytes As Byte() = input.Split("-"c).Select(Function(n) Convert.ToByte(Convert.ToInt32(n, 16))).ToArray()
Guffa
  • 687,336
  • 108
  • 737
  • 1,005