Haskell:aeson,OverloadedStrings和Text.Regex.PCRE

时间:2013-04-04 01:54:45

标签: regex haskell aeson

我有一个正则表达式使用Text.Regex.PCRE工作正常:

[[_,_id,_name]] = "199mercury" =~ "(\\d+)(\\w+) :: [[String]]

但是,我在{ - #LANGUAGE OverloadedStrings# - }中添加了使用aeson(json库)并在=〜上获得实例错误:

<interactive>:33:14:
    No instances for (RegexMaker Regex CompOption ExecOption source0,
                      RegexContext Regex source10 target0)
      arising from a use of `=~'
    Possible fix:
      add instance declarations for
      (RegexMaker Regex CompOption ExecOption source0,
       RegexContext Regex source10 target0)
    In the expression: "199mercury" =~ "(\\d+(\\w+)"
    In an equation for `it': it = "199mercury" =~ "(\\d+(\\w+)"

搜索修复程序似乎是将正则表达式更改为:

getAllTextSubmatches ("199mercury" =~ "(\\d+(\\w+)" :: AllTextSubmatches [] String)

但这似乎只是给了我另一个实例错误:

   No instances for (RegexMaker Regex CompOption ExecOption source0,
                      RegexContext Regex source10 (AllTextSubmatches [] String))

什么是正确的类型放在这里?我尝试的任何东西似乎都没有。似乎OverloadedStrings是问题,但我找不到任何解决方案,只是使用Data.Text.pack与aeson,这有效,但我想弄清楚我正在做什么错误的正则表达式。我很好奇是否是Text.Regex不能与OverloadedStrings一起使用的问题,但我找不到任何证据。

1 个答案:

答案 0 :(得分:9)

它不漂亮,但这种类型检查:

{-# LANGUAGE OverloadedStrings #-}    
import Text.Regex.PCRE

quux = ("1999mercury" :: String) =~ ("(\\d+)(\\w+)" :: String) :: [[String]]

您还可以创建=~的单形版本,以避免一直写入类型:

matches :: String -> String -> [[String]]
matches = (=~)

quux = "1999mercury" `matches` "(\\d+)(\\w+)"