DeleteRangeByteOf
Type
statement
Summary
Deletes the bytes of data between indices Start and Finish in Target.
Syntax
delete byte <Start> to <Finish> of <Target>
Description
Replaces the bytes between the given indices with the empty data.
note
It is an error if either Start or Finish are out of range.
Parameters
Name | Type | Description |
---|---|---|
Start | An expression which evaluates to a valid integer index of Target. | |
Finish | An expression which evaluates to a valid integer index of Target. | |
Target | A container of binary data. |