I am getting a url and breaking the page into strings by line....
I have a line that reads as follows...
OBV N N N N N N N BR HZ N N N N N N HZ HZ N N N BR
I have broken the line down into an array of strings that are 3 charracters each
" N"." N"." N"." N"." N"." N"." N"." BR"." HZ"." N"........ etc through the line of text.
I need to dropp the spaces from the values so i end up with ......
"N"."N"."N"."N"."N"."N"."N"."BR"."HZ"."N"....etc
I am adding the value to text to create calls for gif images that SHOULD look like this,,,,,
OBV_N.gif or OBV_BR.gif
what i am getting is...
OBV%20%20N.gif
and
OBV%20BR.gif
I can only assume that the %20 is a space.
How does one drop the space or spaces from an array value?