A collection of functions for string manipulation used by Kalgan Framework.
```rust use kalgan_string;
asserteq!(kalganstring::strip("-Hello World-", '-'), "Hello World");
rust
use kalgan_string;
asserteq!(kalganstring::stripright("Hello World", 'd'), "Hello Worl");
rust
use kalganstring;
asserteq!(kalganstring::stripleft("Hello World", 'H'), "ello World");
rust
use kalganstring;
asserteq!(kalganstring::stripboth("Hello World", 'H', 'd'), "ello Worl");
rust
use kalganstring;
asserteq!(kalganstring::is_numeric("1.000"), true); ```
For further information please visit:
This crate is licensed under either of the following licenses: