Method: Worldfootball::Page#squish

Defined in:
lib/worldfootball/page.rb

#squish(str) ⇒ Object



95
96
97
98
99
100
# File 'lib/worldfootball/page.rb', line 95

def squish( str )
  str = str.strip
  str = str.gsub( "\u{00A0}", ' ' )  # Unicode Character 'NO-BREAK SPACE' (U+00A0)
  str = str.gsub( /[ \t\n]+/, ' ' )  ## fold whitespace to one max.
  str
end