Code Monkey home page Code Monkey logo

romannumerals's Introduction

RomanNumerals

Converting numbers to and from roman numerals as easy as II+II=IV.
Available as a NuGet package package.

What is does

There are very few features:

  • Convert integers to roman numerals
  • Convert roman numerals to integers
  • Use roman numeral ASCII representation (I, II, III, IV)
  • Use roman numeral Unicode representation (Ⅰ, Ⅱ, Ⅲ, Ⅳ)
  • Use roman numeral vinculum extensions (V̅I̅=6000, I̿I̿=200000, etc.)
  • Use roman numeral apostrophus (C|Ɔ=1000, |ƆƆ=5000, CC|ƆƆ=10000, |ƆƆƆ=50000, CCC|ƆƆƆ=100000)
  • Use roman numeral apostrophus special characters (ↀ=1000, ↁ=5000, ↂ=10000, ↇ=50000, ↈ=100000)
  • Use of positive-only combinations (use ⅠⅠⅠⅠ instead of Ⅳ)

How it works

Simple way

To display: uint to string (representing a Roman numeral)

Console.WriteLine(RomanNumerals.Convert.ToRomanNumerals(123)); // CXXIII
Console.WriteLine(RomanNumerals.Convert.ToRomanNumerals(227, NumeralFlags.Unicode)); // ⅭⅭⅩⅩⅦ

Parsing: string to uint

Console.WriteLine(RomanNumerals.Convert.FromRomanNumerals("IV")); // 4

All methods also works as extension methods:

using RomanNumerals;
var a1 = Convert.ToRomanNumerals(123);
var a2 = 123 .ToRomanNumerals(); // same as above 😍

With options

Formatting

Formatting is done using the NumeralBuilder class, with several options. NumeralBuilder implements ICustomFormatter with the following flags:

Flag Effect
0 Don’t use negative digits (turns 4 to IIII instead of IV)
V or - or = Use vinculum notation (turns 1,000 to Ī instead of M, but also 1,000,000 to I̿ or 5,000,000 to V̿)
' or ` `
u Use Unicode (subset of Unicode Roman numerals)
U Use Unicode plus ligatures (full range of Unicode Roman numerals)
A Use ASCII, the default case

Parsing

Parsing is done using the NumeralParser class (with less options, because it parses all forms at once).

Some documentation

Read more about roman numerals at

romannumerals's People

Contributors

picrap avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

romannumerals's Issues

Optimize parsing

Currently ligatures are removed and the literal is switched from Unicode before parsing.
This could be all done at once using a bigger table with all possibilities.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.