Project

General

Profile

Feature #10051

Updated by nobu (Nobuyoshi Nakada) almost 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 `""` ""

Back