Merge branch 'master' of git://factorcode.org/git/factor
[factor/jcg.git] / basis / regexp / regexp-docs.factor
blob378ae503ce7257ce331f1b412a1b05121b2c6d1f
1 ! Copyright (C) 2008 Doug Coleman.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: kernel strings help.markup help.syntax regexp.backend ;
4 IN: regexp
6 HELP: <regexp>
7 { $values { "string" string } { "regexp" regexp } }
8 { $description "Compiles a regular expression into a DFA and returns this object.  Regular expressions only have to be compiled once and can then be used multiple times to match input strings." } ;