1.7

Table Of Contents
separator
String inserted between all lines returned from the region. If you don't want anything to be
inserted between the lines, specify an empty string ("").
Tip
"<br/>" is a very handy string to use as a separator. When the extracted data is inserted in a
Designer template, "<br/>" will be interpreted as a line break, because <br/> is a line break in
HTML and Designer templates are actually HTML files.
Examples
Example 1:
The script command data.extract(1,22,8,1,"<br />"); means that the left position of the
extracted information is located at character 1, the right position at character 22, the offset
position is 8 (since the line number is 9) and the regionHeight is 1 (to select only 1 line). Finally,
the "<br/>" string is used for concatenation.
Page 247