PARSE PAD PERFORM
PARSE ( buffer-start buffer-count delim-char -- )  
ansi .6.2.2008 <CORE>
parse a piece of input (not much unlike WORD) and place it into the given buffer. The difference with word is also that WORD would first skip any delim-char while PARSE does not and thus may yield that one.

reference: p4_parse in ../src/core.c:2318, export CO PARSE