Feature #10051
Updated by nobu (Nobuyoshi Nakada) over 10 years ago
When I have a nbsp character in a string and call strip on it, it will not remove it even though is would could as a whitespace. E.g. ```ruby Nokogiri.HTML(" ").text.strip ``` results in `" "` " " and should result in `""` ""