Skip to content

Instantly share code, notes, and snippets.

@k0001
Created January 9, 2012 20:53
Show Gist options
  • Save k0001/1584865 to your computer and use it in GitHub Desktop.
Save k0001/1584865 to your computer and use it in GitHub Desktop.
ghci> "Hello World" =~ "W.rld" :: Bool
True
ghci> "Hello World" =~ "W.rld" :: Int
1
ghci> "Hello World" =~ "W.rld" :: String
"World"
ghci> "Hello World" =~ "W.rld" :: (Int, Int)
(6,5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment