我是 Haskell 新手,在弄清楚如何模式匹配ByteString
. 我的[Char]
函数版本如下所示:
dropAB :: String -> String
dropAB [] = []
dropAB (x:[]) = x:[]
dropAB (x:y:xs) = if x=='a' && y=='b'
then dropAB xs
else x:(dropAB $ y:xs)
正如预期的那样,这会从字符串中过滤掉所有出现的“ab”。但是,我在尝试将其应用于ByteString
.
天真的版本
dropR :: BS.ByteString -> BS.ByteString
dropR [] = []
dropR (x:[]) = [x]
<...>
产量
Couldn't match expected type `BS.ByteString'
against inferred type `[a]'
In the pattern: []
In the definition of `dropR': dropR [] = []
[]
显然是罪魁祸首,因为它是常规String
而不是ByteString
. 插入BS.empty
似乎是正确的,但在绑定位置给出了“限定名称:BS.empty”。让我们尝试
dropR :: BS.ByteString -> BS.ByteString
dropR empty = empty
dropR (x cons empty) = x cons empty
<...>
这给出了“模式中的解析错误” (x cons empty)
。我真的不知道我还能在这里做什么。
作为旁注,我试图用这个函数做的是从一些文本中过滤掉一个特定的 UTF16 字符。如果有一种干净的方法可以实现这一点,我很想听听,但是这种模式匹配错误似乎是新手haskeller 应该真正理解的。