Popularity
6.0
Stable
Activity
0.0
Stable
7
3
7
Monthly Downloads: 11
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Latest version: v0.2.0
phone-numbers alternatives and similar packages
Based on the "data" category.
Alternatively, view phone-numbers alternatives based on common mentions on social networks and blogs.
-
interpolatedstring-perl6
QuasiQuoter for Perl6-style multi-line interpolated strings with q, qq and qc support. -
language-hcl
language-hcl contains HCL (Hashicorp Configuration Language) parsers and pretty-printers for the Haskell programming language -
data-structure-inferrer
A program that analyzes source code with a data-structure wildcard and suggests the right one.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of phone-numbers or a related project?
README
phone-numbers - Parse phone numbers with Google's libphonenumber
--
-- Copyright © 2016 Christian Marie <[email protected]>
--
-- The code in this file, and the program it is a part of, is
-- made available to you by its authors as open source software:
-- you can redistribute it and/or modify it under the terms of
-- the 3-clause BSD licence.
--
{-# LANGUAGE OverloadedStrings #-}
import Data.PhoneNumber
import Control.Monad
import Data.Monoid
import qualified Data.ByteString.Char8 as S
main :: IO ()
main = forever $ do
l <- S.getLine
S.putStrLn "Number:"
print $ parsePhoneNumber l "AU"
print (refType <$> parsePhoneNumberRef l "AU")
S.putStrLn $ "Characters keypad normalised: " <> convertAlphaCharacters l