I want to transform the string array to a byte array that would look like : {"0xFF", "0x07" , "0x0A"}
That is not a byte array.
Do you mean
{0xFF, 0x07, 0x0A};
By the way, you have used the words String and string in your post. They are not the same thing.