Skip to content

Instantly share code, notes, and snippets.

@ttldtor
Created August 22, 2015 20:22
Show Gist options
  • Save ttldtor/e61dcef003f925086009 to your computer and use it in GitHub Desktop.
Save ttldtor/e61dcef003f925086009 to your computer and use it in GitHub Desktop.
import std.string;
import std.algorithm;
import std.array;
import std.format;
string stripMargin(string s, char marginChar = '|') {
return s.splitLines.map!(line => line.stripLeft.chompPrefix("" ~ marginChar)).join("\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment