6 stable releases

1.2.1 Dec 12, 2021
1.2.0 Dec 9, 2021
0.2.3 Dec 1, 2021
0.2.1 Nov 30, 2021
0.0.0 Nov 27, 2021

#2006 in Parser implementations

Download history 104/week @ 2024-07-22 143/week @ 2024-07-29 76/week @ 2024-08-05 102/week @ 2024-08-12 97/week @ 2024-08-19 106/week @ 2024-08-26 57/week @ 2024-09-02 49/week @ 2024-09-09 56/week @ 2024-09-16 100/week @ 2024-09-23 75/week @ 2024-09-30 13/week @ 2024-10-07 131/week @ 2024-10-14 49/week @ 2024-10-21 59/week @ 2024-10-28 59/week @ 2024-11-04

299 downloads per month
Used in 3 crates

Unlicense

18KB
388 lines

Scanf

If you know it from C, same functionality but with memory safety.

let mut number: u32 = 0;
let mut name: String = String::new();
if scanf!("{},{}", number, name).is_ok() {
    println!("Input is: {} and {}", number, name);
}
let input = "5,something";
let mut number: u32 = 0;
let mut name: String = String::new();
if let Err(error) = sscanf!(input, "{},{}", number, name) {
    panic!("Error {} using sscanf!", error);
}

Look more examples in the documentation.


lib.rs:

scanf! & sscanf!

Similar to C's but with memory safety.

Examples

use scanf::scanf;

let mut product: String = String::new();
let mut price: f32 = 0.0;
println!("Insert product and price (product: price):");
if scanf!("{}: {}", product, price).is_ok() {
    println!("Price of {} is {:.2}", product, price);
}
use scanf::sscanf;

let input: &str = "Candy: 2.75";
let mut product: String = String::new();
let mut price: f32 = 0.0;
println!("Insert product and price (product: price):");
sscanf!(input, "{}: {}", product, price);
println!("Price of {} is {:.2}", product, price);

It's possible to indicate the type in the format string:

let mut product: String = String::new();
let mut price: f32 = 0.0;
println!("Insert product and price (product: price):");
scanf!("{string}: {f32}", product, price);

Also escape brackets:

let input: &str = "{Candy}";
let mut product: String = String::new();
sscanf!(input, "{{{}}}", product);
assert_eq!(product, "Candy");

Examples has been compiled and sscanf's examples also ran as tests. If you have problems using the example code, please, create an issue.

Dependencies

~1MB
~19K SLoC