scanf: Easy and type-safe format strings for parsing and printing

[ library, mit, text ] [ Propose Tags ]

A lightweight library for one-off parsing and printing.

See README.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0
Dependencies base (>=4.7 && <5), template-haskell [details]
License MIT
Copyright 2018 Li-yao Xia
Author Li-yao Xia
Maintainer lysxia@gmail.com
Category Text
Home page https://github.com/Lysxia/scanf#readme
Source repo head: git clone https://github.com/Lysxia/scanf
Uploaded by lyxia at 2018-03-18T19:55:48Z
Distributions LTSHaskell:0.1.0.0, NixOS:0.1.0.0, Stackage:0.1.0.0
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 1148 total (14 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2018-03-18 [all 1 reports]

Readme for scanf-0.1.0.0

[back to package description]

Haskell scanf Build Status

A lightweight library for one-off parsing and printing.

scanf [fmt|%d lazy %s and %d strict %s|]
      "3 lazy functions and 2 strict fields"
  = Just (3 :+ "functions" :+ 2 :+ "fields" :+ ())

Quasiquotes are optional. Format strings can also be defined with pure Haskell combinators.

printf (fmt_ (int . " lazy " % string . " and " % int . " strict " % string)
       (8 :+ "dogs" :+ 9 :+ "cats" :+ ())
  = "8 lazy dogs and 9 strict cats"

With quasiquotes, the following conversion strings are supported:

  • %d: signed integer (Int)
  • %l: signed integer (Integer, unbounded)
  • %f: floating point (Double)
  • %s: string of non-space characters (String)
  • %c: single character (Char)
  • %%: parse/print a literal percent character

N.B.: in scanf, spaces in the format string match any number of whitespace character until the next nonspace character.


Though it also offers a printf function, scanf is thus named as there are only few other preexisting Haskell implementations, whereas many Haskell printf libraries can already be found on Hackage.

Similar to: