Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/coa_op_scraper.rb
Overview
This is required (and helpful) to parse Texas court docket pages
Instance Method Summary collapse
- #nbsp_strip ⇒ Object
-
#strip_both_ends ⇒ Object
gets rid of some pesky unicode found on Texas OCA sites.
Instance Method Details
#nbsp_strip ⇒ Object
79 80 81 |
# File 'lib/coa_op_scraper.rb', line 79 def nbsp_strip strip.gsub(/\u00a0$/,"").gsub(/^\u00a0/,"").strip end |
#strip_both_ends ⇒ Object
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 |