我想用 Haskell 中的字符串替换子字符串,而不使用外部库,并且如果可能的话,具有良好的性能。
我考虑过使用Data.Text
替换功能,但我不想移植我的整个程序以使用Text
类型而不是Strings
. 是否会将其打包String
成一个Text
值,然后替换我想要的值,然后将该 Text 值解包为 aString
会很慢Strings
?
试试这个(未经测试):
replace :: Eq a => [a] -> [a] -> [a] -> [a]
replace needle replacement haystack
= case begins haystack needle of
Just remains -> replacement ++ remains
Nothing -> case haystack of
[] -> []
x : xs -> x : replace needle replacement xs
begins :: Eq a => [a] -> [a] -> Maybe [a]
begins haystack [] = Just haystack
begins (x : xs) (y : ys) | x == y = begins xs ys
begins _ _ = Nothing
但总的来说,您可以通过将程序切换为使用Text
s 而不是String
s 来获得性能提升。
这是我的解决方案
import Data.List (intercalate)
import Data.List.Split (splitOn)
replace from to = intercalate to . splitOn from
例子
replace "squirrel" "platypus" "Daddy, I want a squirrel !"
爸爸,我想要一只鸭嘴兽!