I have a text file where I'll always want to get the 5th item for processing. Each item in each line of data is separated by spaces, but it's a variable number of spaces. I can't use the split function, because it expects only ONE space between each expression. How could I clean this up, so that only one space separates each expression, and thus allow me to use the split function? Or maybe there's something else I could use instead of split?