如何在 EOF 处停止 Haskell Parsec 解析器

How to stop Haskell Parsec parser at EOF

所以,我正在编写一个小型解析器,它将提取具有特定 class 的所有 <td> 标记内容,就像这个 <td class="liste">some content</td> --> Right "some content"

我将解析大型 html 文件,但我并不真正关心所有噪音,所以我的想法是消耗所有字符直到达到 <td class="liste"> 而不是消耗所有字符(内容)直到 </td> 和 return 内容字符串。

如果文件中的最后一个元素是我的 td.liste 标记,则此方法工作正常,但如果我在它之后有一些文本或 eof 而不是我的解析器使用它并抛出 unexpected end of input 如果你执行 parseMyTest test3.

-- 编辑
请参阅 test3 结尾以了解什么是边缘情况。

到目前为止,这是我的代码:

import Text.Parsec
import Text.Parsec.String

import Data.ByteString.Lazy (ByteString)
import Data.ByteString.Char8 (pack)

colOP :: Parser String
colOP = string "<td class=\"liste\">"

colCL :: Parser String
colCL = string "</td>"

col :: Parser String
col = do
  manyTill anyChar (try colOP)
  content <- manyTill anyChar $ try colCL
  return content

cols :: Parser [String]
cols = many col

test1 :: String
test1 = "<td class=\"liste\">Hello world!</td>"

test2 :: String
test2 = read $ show $ pack test1

test3 :: String
test3 = "\n\r<html>asdfasd\n\r<td class=\"liste\">Hello world 1!</td>\n<td class=\"liste\">Hello world 2!</td>\n\rasldjfasldjf<td class=\"liste\">Hello world 3!</td><td class=\"liste\">Hello world 4!</td>adsafasd"

parseMyTest :: String -> Either ParseError [String]
parseMyTest test = parse cols "test" test

btos :: ByteString -> String
btos = read . show

我创建了一个组合器 skipTill p end 应用 p 直到 end 匹配然后 returns what end returns.

相比之下,manyTill p end 应用 p 直到 end 匹配,然后 returns p 解析器匹配的内容。

import Text.Parsec
import Text.Parsec.String

skipTill :: (Stream s m t) => ParsecT s u m a -> ParsecT s u m end -> ParsecT s u m end
skipTill p end = scan
    where
      scan  = end  <|> do { p; scan }

td :: Parser String
td = do
  string "("
  manyTill anyChar (try (string ")"))

tds = do r <- many (try (skipTill anyChar (try td)))
         many anyChar -- discard stuff at end
         return r

test1 = parse tds "" "111(abc)222(def)333" -- Right ["abc", "def"]

test2 = parse tds "" "111"                 -- Right []

test3 = parse tds "" "111(abc"             -- Right []

test4 = parse tds "" "111(abc)222(de"      -- Right ["abc"]

更新

这似乎也有效:

tds' = scan
  where scan = (eof >> return [])
               <|> do { r <- try td; rs <- scan; return (r:rs) }
               <|> do { anyChar; scan }