1 unstable release
0.1.0 | Aug 31, 2024 |
---|
#556 in Text processing
14KB
349 lines
Strip Tags
A port of the strip_tags
function from PHP to Rust.
Usage
use strip_tags::strip_tags;
fn main() {
let html = "<p>Hello, <strong>world</strong>!</p>";
let text = strip_tags(html);
assert_eq!(text, "Hello, world!");
}
API
See documentation for more information.