Skip to content

Instantly share code, notes, and snippets.

@jasonbradley
Created December 15, 2012 05:23
Show Gist options
  • Save jasonbradley/4291508 to your computer and use it in GitHub Desktop.
Save jasonbradley/4291508 to your computer and use it in GitHub Desktop.
PHP trim for Lua
Util.trim = function(s)
return (string.gsub(s, "^%s*(.-)%s*$", "%1"))
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment