Text Edit Plus includes built-in text extraction feature. Use the menu Tools -> Extract Text...
1) $GETURL[url]
This command inserts the content of the web page given by the parameter URL.
Example:
$GETURL[https://vovsoft.com/software/text-edit-plus/]
2) $GETURLREADABLE[url]
This command inserts the human readable content of the web page given by the parameter URL.
Example:
$GETURLREADABLE[https://vovsoft.com/software/text-edit-plus/]
3) $GETURLWORDS[url]
This command inserts the words from human readable content of the web page given by the parameter URL.
Example:
$GETURLWORDS[https://vovsoft.com/software/text-edit-plus/]
4) $GETLINE[line_number]
This command extracts the line given by the parameter line_number.
Example:
$GETLINE[1]
$GETLINE[4]
$GETLINE[169]
5) $GETPARTOFLINE1[line_number;start_text,stop_text]
This command extracts the part of the line given by the parameters line_number, start_text and stop_text.
If the parameter line_number is 0, then the command is applied to all of the lines.
Example:
Let 'Here is a test line' is a line #10.
$GETPARTOFLINE1[10;is,line]
outputs
is a test
6) $GETPARTOFLINE2[line_number;start_position,stop_position]
This command extracts the part of the line given by the parameters line_number, start_position and stop_position.
If the parameter line_number is 0, then the command is applied to all of the lines.
Example:
Let 'Here is a test line' is a line #10.
$GETPARTOFLINE2[10;2,13]
outputs
ere is a te
7) $GETPARTOFLINE3[line_number;start_position,stop_text]
This command extracts the part of the line given by the parameters line_number, start_position and stop_text.
If the parameter line_number is 0, then the command is applied to all of the lines.
Example:
Let 'Here is a test line' is a line #10.
$GETPARTOFLINE3[10;2,line]
outputs
ere is a test
8) $GETPARTOFLINE4[line_number;start_text,stop_position]
This command extracts the part of the line given by the parameters line_number, start_text and stop_position.
If the parameter line_number is 0, then the command is applied to all of the lines.
Example:
Let 'Here is a test line' is a line #10.
$GETPARTOFLINE4[10;is,13]
outputs
is a te