Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/coa_op_scraper.rb

Overview

This is required (and helpful) to parse Texas court docket pages

Instance Method Summary collapse

Instance Method Details

#nbsp_stripObject



79
80
81
# File 'lib/coa_op_scraper.rb', line 79

def nbsp_strip
  strip.gsub(/\u00a0$/,"").gsub(/^\u00a0/,"").strip
end

#strip_both_endsObject

gets rid of some pesky unicode found on Texas OCA sites



83
84
85
# File 'lib/coa_op_scraper.rb', line 83

def strip_both_ends
  nbsp_strip.nbsp_strip.reverse.nbsp_strip.nbsp_strip.reverse
end