Cutting line portion

From TED Notepad
Revision as of 21:34, 18 May 2011 by Jsimlo (talk | contribs)
This section is up to date for TED Notepad version 6.3.1.0.

Cutting portion of a line is divided into two successive parts. First, columns are cut from the line, by either:

Note: Columns are cut for each line separately, therefore the total number of columns on a line may vary from line to line. If specified column number is beyond the total number of columns, empty zero-length portion is cut for such column from that line. Therefore, it is allowed to cut columns 2-7, even though some lines do not have enough columns to offer.

This section is incomplete and wants to be finished later.
TODO: Cutting line portion

After the first part (cutting columns from the line), the resulting portion of the line can be further cropped by turning Use only characters option on, and specifying a range of character positions between from position and to position. This cuts off everyting before the from position and everyting after the to position.

  • Calculate the position backwards: from right to left can be used to numerate the character positions from the end of line rather than the usual way. Note, however, that this only affects how the positions are numbered before they are cropped; the text itself is not reversed.

Note: Range of character positions is always cropped after columns are cut. If a range is specified beyond cut columns, empty zero-length portion is cropped from that line, even if the original line continues after the cut columns. In other words, range of character positions cannot bring back what has already been cut off by previous step.

Note: There is currently no way to cut columns after cropping a range of character positions.

Note: Column preview button displays a small portion of lines transformed by current dialog values. Be aware that preview is always generated from the current selection. If there is no selection, then there is nothing to preview.

Example: A line HELLO WORLD would be divided into:

  • two columns (HELLO and WORLD) — if delimited by a Space character;
  • four columns (H, LL,  W and RLD) — if delimited by a set of EO characters;
  • four columns (HE, {empty}, O WOR and D) — if delimited by an L character;
  • and only one column (HELLO WORLD) — if delimited by an X character, lowercase e character, or if delimited by no characters — this is because none of these characters are found on the examined line.