SP - Split

Splits lines.

Syntax

SP{n}/string{/{p{-q}}}
or
SPm-k/string{/{p{-q}}}
or
SPm,n/string{/{p{-q}}}

Syntax Elements

n The number of lines to be split, beginning with the current line. If n is not specified, it defaults to the current line.

m -kSpecifies line m to line k.

m ,nSpecifies n lines, starting at line m.

/ A delimiter separating the different parts of the command. It can be any nonnumeric character (except a blank or minus sign) that does not appear in string. The delimiter terminating string is necessary only if further parameters follow the string specification, or if trailing blanks are to be included as part of the string.

Note that using the colon (:) as a delimiter anchors the search to the starting column (see Column Dependent Matching).

string A character string that determines where the line is to be split. Each line in the specified range is scanned for this text; if a match is found, the line is split at the beginning of the matching text.

The caret character (^) can be used within the search string to match any single character (see Wildcard Character for more details).

p Specifies a starting column (see Column Dependent Matching).

q Specifies an ending column. If omitted, defaults to p. Ignored if less than p,

Operation

If you specify a number or range of lines, all split lines are listed. Note that the line pointer is moved to the last line in the range, and therefore might not be located at the last line listed.

Example

:ED MD TEST1
Top
.P
001 The ABC Computer Company
002 Watford, Herts
003 England
EOI 003
.T
Top
.SP1-3/,
002 Watford
002 , Herts
.FS
Top
.P
001 The ABC Computer Company
002 Watford
003 , Herts
004 England
EOI 004




Contents of item TEST1 in the MD file.





If a comma is found in lines 1 through 3, inclusive, split the line.






The line is now split at the point of the comma.