Flowdock
method

_regex_quote

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: String
_regex_quote(str) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/jcode.rb, line 11
  def _regex_quote(str)
    str.gsub(/(\\[\[\]\-\\])|\\(.)|([\[\]\\])/) do
      $1 || $2 || '\\' + $3
    end
  end
Register or log in to add new notes.