71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
(if num num val)))
(define (patt-list-match item patts)
(if (and item patts) ;; here we are filtering for matches with -itempatt
(let ((res #f)) ;; look through all the item-patts if defined, format is patt1,patt2,patt3 ... wildcard is %
(for-each
(lambda (patt)
(if (string-match (glob->regexp
(string-translate patt "%" "*"))
item)
(set! res #t)))
(string-split patts ","))
res)
#t))
;;======================================================================
;; System stuff
|
|
|
|
|
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
(if num num val)))
(define (patt-list-match item patts)
(if (and item patts) ;; here we are filtering for matches with -itempatt
(let ((res #f)) ;; look through all the item-patts if defined, format is patt1,patt2,patt3 ... wildcard is %
(for-each
(lambda (patt)
(if (string-match
(regexp (string-substitute "%" ".*" "a%b")) ;;(glob->regexp (string-translate patt "%" "*"))
item)
(set! res #t)))
(string-split patts ","))
res)
#t))
;;======================================================================
;; System stuff
|