Once again, I got a new idea for encoding.
Actually it was my first idea, but I got stuck on one thing.
How can I read the first or x-th character of a string?
Example:
Count = 1
a = "Hello"
Len(a)
do
'Code to use count as the indicator which char to read, example:
b = ReadString(Count,a)
c = Asc(b)
d = b/2
e = "." &d &"."Count = Count + 1
loop
A is now a string which contains "Hello" (without quoation marks).
What code or function would let me read the 2nd letter (e).
What I am trying to do is create a do loop.
First it checks how many chars there are in the string with Len()
Then the do loop reads the Count variable and uses that as which character to read.
Is there something of FSO that I can use?
Or IO-stream?
And how do I put a TAB in a post?
TIA

