
11 Sep
2011
11 Sep
'11
4:38 p.m.
Hey all, Trying to match C-style comments, I have: between (string "/*") (string "*/") $ many anyChar Which doesn't work, because it is equivalent (ignoring returned values) to do {string "/*"; many anyChar; string "*/"} If the termination criterion was a single character, then I could use noneOf or (satisfy . not), but that doesn't help here. So... what am I missing? Thanks in advance. -- Scott Lawrence