Skip to content

Instantly share code, notes, and snippets.

@davisp
Created September 12, 2016 19:10
Show Gist options
  • Select an option

  • Save davisp/0694ba2f1138904d977bf018a276b164 to your computer and use it in GitHub Desktop.

Select an option

Save davisp/0694ba2f1138904d977bf018a276b164 to your computer and use it in GitHub Desktop.
rstrip_whitespace([]) ->
strip;
rstrip_whitespace([C | Rest]) ->
case rstrip_whitespace(Rest) of
strip when C == $\n; C == $\t; C == $\r; C == $\s ->
strip;
Else ->
[C | Else]
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment