I am reading data in from a text file that has a lot of spacing between fields:
name address phone.
Each column is a fixed length, so if i use substring() i can gather the whole field. The problem is when I use trim() it doesnt remove all the spaces. In debug mode when I go over a variable I will see "name \0\0\0\0\0\0\0\0" "address\0\0\0\0\0" etc. Is there another form of trim() that I can use to remove those. Thanks