Handbook
Glossary
normalize-quote ( str -- str )
Vocabulary
xml
.
tokenize
Inputs
str
an
object
Outputs
str
an
object
Definition
USING:
kernel
sequences
;
IN:
xml.tokenize
:
normalize-quote
( str -- str )
[
dup
"\t\r\n"
member?
[
drop
32
]
when
]
map!
;