$Header: /home/radek/cvs/forth-book/dictionary/ansi/2008.parse,v 1.1 2003/12/28 18:21:57 radek Exp $

Jméno

PARSE — čte/parsuje řetězec ve vstupním bufferu (TIB)

CORE EXT

Přehled

( char"ccc<char>" → c-addr u ) ;

Definováno v: dpANS Forth 6.2.2008 CORE EXT

Čte řetězec ve vstupním bufferu ukončený znakem char.

c-addr je adresa (ve vstupním bufferu) a u je délka čteného řetězce.

Popis

*FIXME:Parse ccc delimited by the delimiter char. c-addr is the address (within the input buffer) and u is the length of the parsed string. If the parse area was empty, the resulting string has a zero length.

Příklad použití

# $Id: dict-plus-store.ses,v 1.2 2003/12/28 18:21:58 radek Exp $
Gforth 0.6.2, Copyright (C) 1995-2003 Free Software Foundation, Inc.
Gforth comes with ABSOLUTELY NO WARRANTY; for details type `license'
VARIABLE v  ok
8 v !  ok
4 v +!  ok
v @ . 12  ok
BYE 

Kód slova v Qurtus Forthu

Příklad 81. *:[90]