I have a string I want to turn into a char array.
I realise toCharArray() will do this, but I'm limited with memory, the string is 35k bytes long, so I cant just convert as that would take 70k of ram.
So I want to convert each character, and each time delete one off the string as its ocnverted, this is fine as I dont need the string after.
Might be me but I'm struggling to find a means of deleting either the last or first character in a string.
I realise toCharArray() will do this, but I'm limited with memory, the string is 35k bytes long, so I cant just convert as that would take 70k of ram.
So I want to convert each character, and each time delete one off the string as its ocnverted, this is fine as I dont need the string after.
Might be me but I'm struggling to find a means of deleting either the last or first character in a string.