for /f "tokens=1*" %%i in (dict.txt) do { .... }
and a line in dict.txt contains appended blanks, then the variable %%j (=2nd, last token) contains these blanks as well.
How can I assign the pure token without appended blanks?
Dennis