Start adding filters to selection lists
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
module Regex where
|
||||
import Data.List
|
||||
|
||||
regexIn :: String -> String -> Bool
|
||||
regexIn = isInfixOf
|
||||
|
||||
regexList :: String -> [String] -> Bool
|
||||
regexList x = any (isInfixOf x)
|
||||
Reference in New Issue
Block a user