我正在尝试将 Haskell 程序转换为 Haskell GUI 程序,但由于我是 Haskell 的新手,每次尝试时都会遇到很多错误。我在 Stack Overflow 上多次询问过这个程序,但每当错误消失时,就会出现两个错误。
很抱歉问了类似的问题,但我打算转换的程序的能力是非常简单的单词搜索。接收输入字符串,搜索单词,在窗口上打印。
任何建议、提示或示例都会对我很有帮助。
我在 Windows XP 上。很抱歉代码很差。
--GUI routine
import Graphics.UI.Gtk
import Text.Regex.Posix ((=~))
import Control.Monad (when)
--core routine
matchWord :: String -> String -> Int
matchWord file word = length . filter (== word) . concat $ file =~ "[^- \".,\n]+"
--main start
main :: IO ()
main =
do initGUI
win <- windowNew
windowSetTitle win "WORD SEARCHER"
win `onDestroy` mainQuit
fch <- fileChooserWidgetNew FileChooserActionOpen
containerAdd win fch
targetFile <- fileChooserGetFilename fch --wrong?
ent <- entryNew
btn <- buttonNewWithLabel "Click to search"
st <- labelNew $ Just "Found : 0 "
col <- vBoxNew False 5
containerAdd col ent
containerAdd col btn
containerAdd col st
btn `onClicked` do targetWord <- entryGetText ent
fileData <- readFile Just targetFile
found <- matchWord fileData targetWord
labelSetText st found
containerAdd win col
widgetShowAll win
mainGUI
谢谢你的阅读