chompUntil

Chomp until you see a certain string. page

chompUntil : String -> Parser ()

You could define C-style multi-line comments like this:

comment : Parser () comment = symbol "/*" |. chompUntil "*/"

I recommend using multiComment for this particular scenario though. It can be trickier than it looks!

~