作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你好,我们必须创建一个代码,例如将“1T3e1s1t”转换为 [(1,'T'),(3,'e'),(1,'s'),(1,'t') ]
这是我的代码
unformat :: String -> [(Int, Char)]
unformat [] = []
unformat (x:xs) = [(unformat' + 1, x)] ++ unformat xss
where
unformat' = length (takeWhile (== x)xs)
xss = drop unformat' xs
它可以工作,但输出是“1T3e” -> [(1,'1'),(1,'T'),(1,'3'),(1,'e')]除了 takeWhile - drop 函数之外,我收到错误。我也尝试过使用复制函数,但输出再次错误
unformat :: String -> [(Int, Char)]
unformat [] = []
unformat (x:xs) = (replicate (fst x) (snd x)) ++ unformat xs
我真诚地感谢任何形式的帮助
最佳答案
您还可以通过列表开头的多个元素进行模式匹配(例如 a:b:xs
):
module Main where
import Data.Char
main = print $ unformat "1T3e1s1t" -- [(1,'T'),(3,'e'),(1,'s'),(1,'t')]
unformat :: String -> [(Int, Char)]
unformat (i:c:xs) = (digitToInt i, c) : unformat xs
unformat _ = []
Data.Char.digitToInt
将 '0'
转换为 0
,将 'f'
转换为 例如,15
。
关于string - 我如何将字符串转换为元组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70777812/
我是一名优秀的程序员,十分优秀!