The operation

(filter (`notElem` "'\"").[(1,'a','%',"yes")])

gives an error. How can apply this filter on that list properly?

link|improve this question

3  
You're having enough issues with beginner material in Haskell, that I'd suggest joining the #haskell irc channel for help, rather than asking lots of easy questions on SO. – Don Stewart Apr 15 '11 at 23:58
Note, for those answering, this is a follow-on from stackoverflow.com/questions/5683210/… – Don Stewart Apr 16 '11 at 0:00
1  
Id rather read some list tutorials actually. – thetux4 Apr 16 '11 at 0:01
2  
"Learn You a Haskell" is a good one: learnyouahaskell.com – Don Stewart Apr 16 '11 at 0:05
2  
You might benefit from Real World Haskell as well. I did. book.realworldhaskell.org/read/getting-started.html – Tim Perry Apr 16 '11 at 1:08
show 1 more comment
feedback

2 Answers

up vote 1 down vote accepted

The . operator in Haskell is function composition -- it composes two functions together.

So your code,

(`notElem` "'\"") . [(1,'a','%',"yes")]

looks like the composition of the notElem function and some list. That's just wrong.

Remove the ., and make sure to show the list first:

> filter (`notElem` "'\"") (show [(1,'a','%',"yes")])
"[(1,a,%,yes)]"
link|improve this answer
Ahh allright. Isn't it possible doing this without using show and assigning the filtered list into a new variable? – thetux4 Apr 15 '11 at 23:59
@thetux4 What result is it that you're trying to achieve from the filtering? It's really not clear. – Jonathan Sterling Apr 16 '11 at 0:02
@Jonathan I actually want to get [(1,a,%,yes)] after filtering but without using show. – thetux4 Apr 16 '11 at 0:04
Ah, I see. You'll need to use show for that. – Jonathan Sterling Apr 16 '11 at 2:34
@thetux4: Why don't you want to use show? The questions you've been asking are all aimed at very small goals; what's the overarching problem you're trying to solve? – Antal S-Z Apr 16 '11 at 2:42
show 1 more comment
feedback

You've got a couple of serious problems. First, your syntax is wacky (. definitely shouldn't be there). But the bigger problem is that what you're trying to filter is of the type [(Int,Char,Char,[Char])] (that is, a list containing a 4-tuple).

And your list has only one element, which is (1,'a','%',"yes"). So filtering that is useless anyway. When function you provide for filtering must be of type a -> Boolean, where a is the type of all the elements of the list.

Seems like you wanted some sort of wonky heterogenous list or something, which you really can't have.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.