pub fn collapse_whitespace(text: &str) -> StringExpand description
Collapse consecutive whitespace into single spaces, trimming leading/trailing.
assert_eq!(collapse_whitespace(" hello world "), "hello world");
assert_eq!(collapse_whitespace(""), "");