# QNDR - Quick and Dirty Regex

>Simple and useful methods for simple Regex operations.

> Documentation

QNDR exports (25 something) simple and useful methods for simple regex operations.

This library has no dependencies.

Example

please see the documentation for details of methods ```rust use qndr;

fn main(){ let resulta = qndr::beginwithalphanumeric(&String::from("!!!!Hayyy")); asserteq!(false,result_a);

let resultb = qndr::beginwithalphabet(&String::from("1234?")); asserteq!(false,resultb);

let resultc = qndr::allowalphabetsonly(&String::from("0123456789")); asserteq!(false,result_c);

let resultd = qndr::allowalphanumericonly(&String::from(" ")); asserteq!(false,result_d);

println!("All operations completed..."); }

```

23-oct-2021

This is very simple but useful crate. Main purpose of this library is for teaching and educational purposes. All the documents and tests are well maintained. Incase of any problem please contact me and I will take care of it.

> You are encouraged to look at the code and point out any problems or errors. I will add features only if they are very valid.