voca_rs Build Status GitHub version codecov license

Voca_rs is a Rust library for manipulating strings.

Voca_rs is inspired by Voca.js and string.py

TL;DR

```rust use voca_rs::*;

let inputstring = "LazyLoad with XMLHttpRequest and snakecase"; let stringinwords = split::words(&inputstring); // => ["Lazy", "Load", "with", "XML", "Http", "Request", "and", "snake", "case"] let snakestring = case::snakecase(&stringinwords[3..6].join(" ")); // => "xmlhttp_request" ```

Documentation

See the complete documentation at https://e1r0nd.github.io/voca_rs/

Run test: cargo test
Build docs: cargo doc -> ./target/doc/voca_rs/index.html
Build project: cargo build -> ./target/debug
Publish project: git push

Roadmap

Case

Chop

Count

Escape

Format

Index

Manipulate

Query

Split

Strip

Template

Util

Copyright

coded by Anatol Marezhanyi @e1r0nd_crg

https://linkedin.com/in/merezhany/
https://www.youtube.com/c/AnatolMerezhanyi

License

Licensed under MIT License