Skip to content

Instantly share code, notes, and snippets.

@sudodoki
Created October 6, 2013 08:51
Show Gist options
  • Select an option

  • Save sudodoki/6851369 to your computer and use it in GitHub Desktop.

Select an option

Save sudodoki/6851369 to your computer and use it in GitHub Desktop.
escaping .^$*+?()[{\| using regexp in javascript
// escaping .^$*+?()[{\|
separator = separator.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment