pub fn strip_unicode_whitespace(input_str: &str) -> String
Expand description

Strips any Unicode whitespace characters from the provided string and returns the resulting string.

Arguments

  • input_str - A string slice that holds the input string from which the Unicode whitespace characters need to be stripped.

Returns

A new string without any Unicode whitespace characters.