2 releases
new 0.1.1 | Oct 31, 2024 |
---|---|
0.1.0 | Oct 29, 2024 |
#1278 in Rust patterns
259 downloads per month
6KB
66 lines
TypeChecker
data_type_checker
is a lightweight Rust library for validating and converting string data into different data types, making it easy to handle dynamic inputs in your applications.
Installation
Add type_checker
to your Cargo.toml
:
[dependencies]
data_type_checker = "0.1.0"```
## Usage
```rust
use data_type_checker::TypeChecker;
fn main() {
let num_str = "42";
if TypeChecker::is_int(num_str) {
println!("'{}' is an integer!", num_str);
}
if let Some(value) = TypeChecker::to_int(num_str) {
println!("Parsed integer: {}", value);
}
}
Features
is_int: Checks if a string can be parsed as an integer. is_float: Checks if a string can be parsed as a float. is_bool: Checks if a string represents a boolean. to_int: Attempts to parse a string into an integer, returning None if it fails. to_float: Attempts to parse a string into a float, returning None if it fails. to_bool: Attempts to parse a string into a boolean, returning None if it fails.
License
This project is licensed under the MIT License
Author
Ben Santora (bensatlantik@gmail.com)# data_type_checker