I want to have a string that can be converted into four numbers.
For example, it converts a string from E17B1237 into (225, 123, 18, 55), this is converted from hexadecimal into decimal.
E1 => 225,
7B => 123,
12 => 18,
37 => 55.
How can I do it? hexadecimal into decimal is just an example, is there any way to do that?
How do I distinguish a string E17B1237, split into (225, 123, 18, 55), then do the conversion. Thanks.
Because I want to have a rectangle in the coordinate, and use x, y, w, h to create a unique ID, then I can also use the unique ID to retrieve x, y, w, h.
How do I create a unique ID(from x,y,w,h) that can be clear to split into four numbers, then do the conversion.