Hello!
I need to convert a binary expression like
Code:
bool[] {1,1,0,1,0,1......1,0,0,1,0,1,1,0,1}
to a decimal string like
Code:
"1890125081"
the clue is, that the binary number can contain a million binary digits and the resulting decimal string could be very long. it's a little like using Blobs, only i have to do it myself.

does anyone know how to do this? google couldn't help me at this one... it's damaging my brain right now...
thanks.