Currently the Text::CSV man page only mentions how to get input from files.
However, other man pages show more ways,
$dom = XML::LibXML->load_xml(
location => $file_or_url
# parser options ...
);
$dom = XML::LibXML->load_xml(
string => $xml_string
# parser options ...
);
$dom = XML::LibXML->load_xml(
string => (\$xml_string)
# parser options ...
);
$dom = XML::LibXML->load_xml({
IO => $perl_file_handle
# parser options ...
);
$dom = $parser->load_xml(...);
Therefore it would be great if the Text::CSV man page mentioned ways to read from a string, etc. which may be needed if preprocessing is necessary, e.g., to strip comments for #54.
Or say "Text::CSV cannot read from a string, as we need to seek() ..."
Currently the Text::CSV man page only mentions how to get input from files.
However, other man pages show more ways,
Therefore it would be great if the Text::CSV man page mentioned ways to read from a string, etc. which may be needed if preprocessing is necessary, e.g., to strip comments for #54.
Or say "Text::CSV cannot read from a string, as we need to seek() ..."