Skip to content

Instantly share code, notes, and snippets.

@jeffwong
Created March 6, 2013 21:12
Show Gist options
  • Save jeffwong/5103140 to your computer and use it in GitHub Desktop.
Save jeffwong/5103140 to your computer and use it in GitHub Desktop.
Delete trailing whitespace from a string in R
strstrip = function(x) gsub("^\\s+|\\s+$", "", x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment