in reply to reading scalars from text file
If you're using flat files as storage facilities then you may want to look into the likes of Text::CSV, AnyData or perhaps even Inine::Awk.## this will split on whitespace, and put the fields into @variables my @variables = split /\s+/, <VARIABLES>;
_________
broquaint
|
|---|