The extract_text_from_file
function uses KeyView to extract text from a file.
extract_text_from_file( filename )
Argument | Description |
---|---|
filename
|
(string) The path and file name of the file that you want to extract text from. |
String. Returns the text extracted from the file.
local filePath = "c:/path/to/my/file.xml"; local text = extract_text_from_file(filePath);
|