Documentation Comments
Use this form to comment on this topic. You can also provide any general observations about the Online Documentation, or request that additional information be added in a future release.
RealityV15.1Online Documentation (MoTW) Revision 7
REMOVE.POS Statement (REMOVE.POS_statement.htm)
Sets the position of the internal REMOVE pointer.
REMOVE.POS( string) = X
string
Name of a string whose internal REMOVE pointer is being returned or set.
REMOVE.POS positions the internal REMOVE pointer to the supplied position, or the end of the string delimiter if the supplied value is -1 or outside the range of the string.
Refer to MultiValue Compatibility.
READ ITEM FROM SALES,"2012" THEN | |
RESTART = INDEX(ITEM, CRLF, 100) | ;* Save position of delimiter prior to 100th line of sales item. |
REMOVE.POS(ITEM) = RESTART | ;* Position remove pointer prior to this field. |
REMOVE PART FROM ITEM TO CRLF SETTING SET | Remove the 100th line of sales item. |