Just wanted to mention that if it is tab-delimitted, you don’t need to go through any special logic. Just use Write Text file using the extension as ‘.XLS’, then Read Range as normal. Of course, you would first want to test opening the file in Excel to see if the delimiter took.
This isn’t necessarily any solution to the problem, just mentioning it 
@mcampu
If it comes down to it, you could use some string manipulation to delimit your text.
Let’s say countBefore is the number of columns before the description, and countAfter is the number of columns after the description. We can use those to split around the description. (for more dynamic variables, you would need to determine these numbers from the column headers in the text)
You could do this as an array.
String.Join(System.Environment.Newline, pdfTxt.Split({System.Environment.Newline}, StringSplitOptions.RemoveEmptyEntries).Select(Function(x) String.Join("|",x.Trim.Split(" "c).Take(countBefore)+"|"+String.Join(" ",x.Trim.Split(" "c).Skip(countBefore).Take(x.Trim.Split(" "c).Skip(countBefore).Count-countAfter))+"|"+String.Join("|",x.Trim.Split(" "c).Skip(x.Trim.Split(" "c).Count-countAfter)) ) )
Note: this has not been tested and could have mistakes, but they can be resolved if errors are posted.
Then, you can use Generate Data Table with the new delimiter. I used “|” but you can use another character including the Tab character. If you use Tab, you could also just write directly to an .XLS using Write Text File.
Essentially, this string manipulation, should split by newline to break it up by line. Then, split by space and join each section together. It should take the items to the countBefore number, join it with the items skipping the countBefore and only taking up to the item count minus the countAfter number. Then finally, joining that with the items from the item count minus the countAfter number taking the countAfter number.
EDIT: also output the text to view it after the string manipulation to make sure it delimited it correctly.
Regards.