| do skip Full Description |   | 
| Syntax   do skip ((past numeric-expression) |
        (over pattern) |
        (past numeric-expression over pattern))
     local-declaration*
     action*
  (else
     local-declaration*
      action*)?
  done
Purpose An action that offers an efficient way of skipping selected blocks of data. The block of input to be skipped by a  A common application for the  find "header/" do skip past 4 done do skip over "/" done A  In a  The following code illustrates where the pattern variable "last-word" can and cannot be referenced:
 translate "*header/" do skip over (word-start letter* word-end) => last-word "/" output last-word ; allowed else output last-word ; not allowed done output last-word ; not allowed 
 do skip past 4 over lookahead "/" done |