TapeTrack Documentation

Because there is more to tape management than you ever realized

User Tools

Site Tools


engine:import:setheadercount

This is an old revision of the document!


Table of Contents

SetHeaderCount

Set the number of records after an initial header record that should be considered part of the header section of an input file.

Phase

This instruction is used by the TapeTrack Import Engine.

Syntax

SetHeaderCount(count);

integer count;

count Number of records in a header (including the initial header record) as identified by AddString with HEADER argument.

Example

Define a header (ANSI page break) with 7 records, skip records not starting with an integer and terminate processing at the first blank record.

AddString(HEADER, 0, “1*”);
SetHeaderCount(7);
AddString(EXCLUSION, 0, “!([0-9]*”);
AddString(TERMINATE, 0, “ *”);
engine/import/setheadercount.1582513464.txt.gz · Last modified: 2025/01/21 22:07 (external edit)