Skip to content

Instantly share code, notes, and snippets.

Created August 12, 2015 18:04
Show Gist options
  • Save anonymous/0c3de9bc9ce8d91a833d to your computer and use it in GitHub Desktop.
Save anonymous/0c3de9bc9ce8d91a833d to your computer and use it in GitHub Desktop.
2.1.2 :001 > i_exp = '\[\)'
=> "\\[\\)"
2.1.2 :002 > exp = "([)]"
=> "([)]"
2.1.2 :003 > exp =~ /i_exp/
=> nil
2.1.2 :004 > /\[\)/.match(exp)
=> #<MatchData "[)">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment