webrust 2.0.0

Python-like Rust for Web Applications - A bridge between Python simplicity and Rust power
Documentation
// webrust/src/text/mod.rs
//! # Text Manipulation Utilities
//!
//! Python-inspired string methods for intuitive text processing in Rust.
//!
//! ## Modules
//!
//! - [`string`] - Python-like string operations (`.splitby()`, `.upper()`, `.title()`, etc.)
//!
//! ## Examples
//!
//! ```rust
//! use webrust::prelude::*;
//! # fn example() {
//! // Smart splitting
//! let parts = "a,b,c".splitby(",");        // ["a", "b", "c"]
//! let words = "hello  world".splitby("");  // ["hello", "world"]
//!
//! // Case transformations
//! let title = "hello world".title();       // "Hello World"
//!
//! // Validation
//! let is_alpha = "hello".isalpha();        // true
//! # }
//! ```

pub mod string;

pub use string::*;