Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/musicbrainz_automatcher.rb
Overview
Monkey patch String class to add our escaping method
Instance Method Summary collapse
Instance Method Details
#lucene_escape_query ⇒ Object
10 11 12 |
# File 'lib/musicbrainz_automatcher.rb', line 10 def lucene_escape_query return self.gsub(/([+\-|!(){}\[\]\^'"~*?:\\])/) {|s| '\\'+s} end |