if I was to use the following code(from a library source)
would the - 1 remove digits from the beginning or the end of the string?.
for(Index = 1; Index <= Length(Line))
if(Line[Index] = 32)
Line[Index] = Line[Index]-1;
Index = Index + 1;
also will the (32) be recognised as a space character?
many thanks
INDO
would the - 1 remove digits from the beginning or the end of the string?.
for(Index = 1; Index <= Length(Line))
if(Line[Index] = 32)
Line[Index] = Line[Index]-1;
Index = Index + 1;
also will the (32) be recognised as a space character?
many thanks
INDO