Skip to content

Instantly share code, notes, and snippets.

@bricef
Created May 11, 2010 22:05
Show Gist options
  • Save bricef/397947 to your computer and use it in GitHub Desktop.
Save bricef/397947 to your computer and use it in GitHub Desktop.
// Will work as expected
"foo|bar|spam|eggs".split("\\|");
//will get a compilation error
"foo|bar|spam|eggs".split("\|");
//will split on each character
"foo|bar|spam|eggs".split("|");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment