我正在尝试将我的 java 程序翻译成 Haskell。我的目标是将我的字符串分成几个字符串并将它们放在一个列表中。
到目前为止,这是我的代码
import Char
import IO
import Text.Regex
translate :: String -> Int
translate input =
testcode(splitRegex (mkRegex "\\s") input)
testcode 根据第一个值进行一些测试,例如(在运行中进行此操作还没有到这一步)
testcode :: [String] -> Int -> Int
testcode [] 0
testcode (x:xs) n
|(x=="test") = 1
|otherwise = testcode xs
我不断收到的编译错误如下:
Could not find module `Text.Regex'
Perhaps you meant Text.Read (from base)
如何导入 Text.Regex?