Handbook
Glossary
<one-or-more> ( regexp -- regexp+ )
Regular expression combinators
Prev:
<zero-or-more> ( regexp -- regexp* )
Next:
<option> ( regexp -- regexp? )
Vocabulary
regexp
.
combinators
Inputs
regexp
a
regexp
Outputs
regexp+
a
regexp
Word description
Creates a new regular expression which matches one or more copies of the given regexp.
Definition
USING:
regexp.ast
regexp.combinators.private
sequences
;
IN:
regexp.combinators
:
<one-or-more>
( regexp -- regexp+ )
[
"("
")+"
surround
]
[
<plus>
]
modify-regexp
;
foldable
flushable