commonregexrs

A Rust library that provides a collection of functions for validating common types of strings, such as emails, passwords, URLs, and more. It uses the regex crate to perform the regular expression matching.

Usage

To use the library, add commonregexrs as a dependency in your Cargo.toml file and include the library in your project:

extern crate common_regex_rs; use common_regex_rs::*;

Then, you can call the various functions provided by the library to check if a given string matches a certain pattern. For example, to check if a string is a valid email address:

rust let email = "example@email.com"; let is_valid = is_email(email);

Here is the list of all the functions that are provided by the library:

Notes

License

This library is licensed under the MIT license. See the LICENSE file for details.