If I receive from PC to PicMicro next:

receive var byte[8]
hserin [STR receive\8]

then I will receive "128ABCDE"
And I will have next:

receive[0] = "1"
receive[1] = "2"
receive[2] = "8"
receive[3] = "A"
receive[4] = "B"
receive[5] = "C"
receive[6] = "D"
receive[7] = "E"


How to I get from that as decimal 128 separated from ABCDE ?
I was probe and get result from receive[0] is dec 49 and that is ASCII chr.....

Core of my try is to thel PicMicro what to show on LCD at position what I want.

Org of my LCD is 4x20 chr with No:. of position from 128 to 231..