From 33822922d4ee4a48c4af7d7d83f84737772bc6cd Mon Sep 17 00:00:00 2001 From: Daniel Ehrenberg Date: Wed, 11 Mar 2009 00:10:11 -0500 Subject: [PATCH] Removing regexp.matchers vocab, merged into regexp --- basis/regexp/matchers/matchers.factor | 59 --------------------------- 1 file changed, 59 deletions(-) delete mode 100644 basis/regexp/matchers/matchers.factor diff --git a/basis/regexp/matchers/matchers.factor b/basis/regexp/matchers/matchers.factor deleted file mode 100644 index 87df845958..0000000000 --- a/basis/regexp/matchers/matchers.factor +++ /dev/null @@ -1,59 +0,0 @@ -! Copyright (C) 2008, 2009 Daniel Ehrenberg, Doug Coleman. -! See http://factorcode.org/license.txt for BSD license. -USING: kernel sequences math splitting make fry locals math.ranges -accessors arrays ; -IN: regexp.matchers - -! For now, a matcher is just something with a method to do the -! equivalent of match. - -GENERIC: match-index-from ( i string matcher -- index/f ) - -: match-index-head ( string matcher -- index/f ) - [ 0 ] 2dip match-index-from ; - -: match-slice ( i string matcher -- slice/f ) - [ 2dup ] dip match-index-from - [ swap ] [ 2drop f ] if* ; - -: matches? ( string matcher -- ? ) - dupd match-index-head - [ swap length = ] [ drop f ] if* ; - -: match-from ( i string matcher -- slice/f ) - [ [ length [a,b) ] keep ] dip - '[ _ _ match-slice ] map-find drop ; - -: match-head ( str matcher -- slice/f ) - [ 0 ] 2dip match-from ; - -> ] when ] keep ; - -PRIVATE> - -:: all-matches ( string matcher -- seq ) - 0 [ dup ] [ string matcher next-match ] produce nip but-last ; - -: count-matches ( string matcher -- n ) - all-matches length ; - -> ] map 0 prefix - slices [ from>> ] map string length suffix - [ string ] 2map ; - -PRIVATE> - -: re-split1 ( string matcher -- before after/f ) - dupd match-head [ 1array split-slices first2 ] [ f ] if* ; - -: re-split ( string matcher -- seq ) - dupd all-matches split-slices ; - -: re-replace ( string matcher replacement -- result ) - [ re-split ] dip join ;