ascii_converter

Crates.ioascii_converter
lib.rsascii_converter
version0.3.0
sourcesrc
created_at2021-07-03 22:50:06.107012
updated_at2022-06-05 15:00:48.315511
descriptionA library for converting between different ascii representations
homepagehttps://github.com/BrandonC98/ascii_converter
repositoryhttps://github.com/BrandonC98/ascii_converter
max_upload_size
id418362
size47,100
BrandonC (BrandonC98)

documentation

https://docs.rs/ascii_converter

README

Ascii Converter


Description

This project is a library for converting between different Ascii representations in the Rust language. This is made for Rust programs that need to convert an ascii value. This library has methods for converting any of the supported representations to another.

Currently supported representations

  • Binary
  • Decimal
  • Characters
  • Hexadecimals

Full Documentation for this library can be found here


Installation

Add this to your projects Cargo.toml:

[dependencies]
ascii_converter = "0.3.0"

Usage

This library consists of several functions that follow the same simplistic convention, input the data and the new representation is returned.

below is a program that converts text to binary and decimal. this code can be found in the examples/conversion.rs

use ascii_converter::*;
use std::io::*;

fn main() {

    let mut name = String::new();
    
    print!("Enter name: ");

    stdout().flush().expect("unable to flush buffer");

    //reads user input and assigns it to the name variable
    stdin().read_line(&mut name).unwrap();

    let name = name.trim();

    //outputs the binary representation
    println!("* {} in Binary: {:?}", name, string_to_binary(&name).unwrap());
    
    //outputs the decimal representation
    println!("* {} in Decimal: {:?}", name, string_to_decimals(&name).unwrap());

}

Running the code above will give you the output below

Output


License

MIT

Commit count: 61

cargo fmt