[Haskell-beginners] searching for an element from a list of tuples

Anvika Kumar anvikakumar93 at gmail.com
Mon May 9 04:11:01 UTC 2016


I have a tuple with three values and i want to remove the tuple which
contains a particular name.

So d = (name, month, date)
 i take a user input of name and then search the list which has tuples of
the above declared type. Which ever tuple has the name it should be deleted
from the list.

d is the tuple.
db should be a list of tuples.


remove :: (Eq) =>  IO String  -> d
print "Enter the name to be removed”
a <- getLine
      remove x [] = []
      print “Record not found”
      remove x db =
         if x ==



Please let me know!

Thanks a lot
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/beginners/attachments/20160509/806180fd/attachment.html>


More information about the Beginners mailing list