#hex #octal #decimal #binary

parse_int

Parse &str with common prefixes to integer values

8 releases (5 breaking)

0.6.0 Sep 6, 2021
0.5.0 Jan 9, 2021
0.4.0 Jan 14, 2020
0.3.0 Jan 13, 2020
0.1.1 Jan 6, 2020

#52 in Parser tooling

Download history 8169/week @ 2023-11-18 11234/week @ 2023-11-25 9984/week @ 2023-12-02 10054/week @ 2023-12-09 8866/week @ 2023-12-16 3441/week @ 2023-12-23 6074/week @ 2023-12-30 7524/week @ 2024-01-06 7902/week @ 2024-01-13 7934/week @ 2024-01-20 7179/week @ 2024-01-27 6795/week @ 2024-02-03 6642/week @ 2024-02-10 6252/week @ 2024-02-17 6037/week @ 2024-02-24 6080/week @ 2024-03-02

26,043 downloads per month
Used in 29 crates (23 directly)

Apache-2.0/MIT/BSL-1.0/CC0-1.0

13KB
205 lines

parse_int

crates.io CI pipeline

Parse &str with common prefixes to integer values:

use parse_int::parse;

let d = parse::<usize>("42")?;
assert_eq!(42, d);

let d = parse::<isize>("0x42")?;
assert_eq!(66, d);

// you can use underscores for more readable inputs
let d = parse::<isize>("0x42_424_242")?;
assert_eq!(1_111_638_594, d);

let d = parse::<u8>("0o42")?;
assert_eq!(34, d);
#[cfg(feature = "implicit-octal")]
{
    let d = parse::<u8>("042")?;
    assert_eq!(34, d);
}

let d = parse::<u16>("0b0110")?;
assert_eq!(6, d);

Documentation.

Enable the "implicit-octal" feature

Specify the crate like this:

[dependencies]
parse_int = { version = "0.5", features = ["implicit-octal"] }

Then this code will return Hello, Ok(34)!:

use parse_int::parse;
fn main() {
    println!("Hello, {:?}!", parse::<i128>("00042"));
}

License

This work is distributed under the super-Rust quad-license:

Apache-2.0/MIT/BSL-1.0/CC0-1.0

This is equivalent to public domain in jurisdictions that allow it (CC0-1.0). Otherwise it is compatible with the Rust license, plus the option of the runtime-exception-containing BSL-1. This means that, outside of public domain jurisdictions, the source must be distributed along with author attribution and at least one of the licenses; but in binary form no attribution or license distribution is required.

Dependencies

~155KB