Skip to content

Instantly share code, notes, and snippets.

@vanstee
Created August 11, 2013 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vanstee/6206592 to your computer and use it in GitHub Desktop.
Save vanstee/6206592 to your computer and use it in GitHub Desktop.
iex(1)> # doesn't work
nil
iex(2)> String.strip("cat猫猫猫", ?猫)
"cat猫猫猫"
iex(3)> # works
nil
iex(4)> String.strip("cat---", ?-)
"cat"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment