A flexible, template-driven string transformation pipeline for Rust.
use string_pipeline::process; let result = process("a,b,c", "{split:,:..|join:\\\\n}").unwrap(); assert_eq!(result, "a\nb\nc");