this sound a bit confusing to me, but i was wondering how to convert a string type to a bytes the string format is same as bytes example :
String Buffer = "31,139,8,0,0,0,0,0,4,0,236,189,9,156,212"; // its bytes on string Format
i want to convert that string to bytes (**Not Converting the Value of the string but the actual type)
Edit : example of what i want exactly :
`string = "10,156,0,0,4,0,236,156";`
to be
byte[] buffer = {10,156,0,0,4,0,236,156};