Align columns: Difference between revisions

Content added Content deleted
m (→‎{{header|Haskell}}: (Minor linting and import pruning of existing example))
Line 2,461: Line 2,461:


=={{header|Haskell}}==
=={{header|Haskell}}==
<lang haskell>import Data.List
<lang haskell>import Data.List (unfoldr, transpose)
import Control.Monad
import Control.Arrow (second)
import Control.Arrow


dat =
dat = "Given$a$text$file$of$many$lines,$where$fields$within$a$line$\n" ++
"are$delineated$by$a$single$'dollar'$character,$write$a$program\n" ++
"Given$a$text$file$of$many$lines,$where$fields$within$a$line$\n" ++
"are$delineated$by$a$single$'dollar'$character,$write$a$program\n" ++
"that$aligns$each$column$of$fields$by$ensuring$that$words$in$each$\n" ++
"column$are$separated$by$at$least$one$space.\n" ++
"that$aligns$each$column$of$fields$by$ensuring$that$words$in$each$\n" ++
"Further,$allow$for$each$word$in$a$column$to$be$either$left$\n" ++
"column$are$separated$by$at$least$one$space.\n" ++
"justified,$right$justified,$or$center$justified$within$its$column.\n"
"Further,$allow$for$each$word$in$a$column$to$be$either$left$\n" ++
"justified,$right$justified,$or$center$justified$within$its$column.\n"


brkdwn =
brkdwn = takeWhile (not.null) . unfoldr (Just . second (drop 1) . span ('$'/=))
takeWhile (not . null) . unfoldr (Just . second (drop 1) . span ('$' /=))


format j ls = map (unwords. zipWith align colw) rows
format j ls = map (unwords . zipWith align colw) rows
where
where
rows = map brkdwn $ lines ls
rows = map brkdwn $ lines ls
colw = map (maximum. map length) . transpose $ rows
colw = map (maximum . map length) . transpose $ rows
align cw w =
align cw w =
case j of
case j of
'c' -> (replicate l ' ') ++ w ++ (replicate r ' ')
'c' -> replicate l ' ' ++ w ++ replicate r ' '
'r' -> (replicate dl ' ') ++ w
'r' -> replicate dl ' ' ++ w
'l' -> w ++ (replicate dl ' ')
'l' -> w ++ replicate dl ' '
where
where
dl = cw-length w
dl = cw - length w
(l,r) = (dl `div` 2, dl-l)</lang>
(l, r) = (dl `div` 2, dl - l)</lang>
{{out}}
{{out}}
<pre>
<pre>