Hello , I'm a bit new to programming . I'm receiving a very long string ie : 74278BDAB64445208
I want to split it into different variables.
For example the 2nd and 3rd digits are stored in a variable called a , the 5th to the 8th is stored in variable called b . Giving me a result of a = 42 , b=8BDA
is there a built-in function which can achieve this in Arduino ? if not can you help me with a way of doing it ?