Hi everyone!

I have been trying to tokenize locals that are produced by file read. However, weird thing happens with these locals.

For example, if I use the code

file open fh using "location/table.txt", read

file read fh line

di "`line'"


The result is:
VARIABLES logtotal_assets logfixed_assets logrevenue loglabor_costs logemployment


However, if I run:
foreach i in `line'{
di "`i'"
}

It returns the same result as di "`line'". I try to tokenize the local line but it also fails. It would be great if anyone has inside on this issue!


Thanks so much!