在Haskell中處理字符串通常使用String
類型,也可以使用Text
類型,具體取決于需求。
以下是處理字符串的一些常見操作:
str1 = "Hello"
str2 = "World"
concatenatedStr = str1 ++ ", " ++ str2
str = "Hello"
strLength = length str
str = "Hello World"
containsStr = "World" `isInfixOf` str
import Data.List.Split
str = "Hello,World"
splitStr = splitOn "," str
import Data.Char
str = "hello"
upperStr = map toUpper str
lowerStr = map toLower str
import Data.List
str = "Hello World"
replacedStr = intercalate "-" (words str)
str1 = "123"
intVal = read str1 :: Int
str2 = "3.14"
floatVal = read str2 :: Float
這些是一些常見的字符串操作,還有許多其他函數和庫可以幫助更復雜的字符串處理任務。