Skip to content

Instantly share code, notes, and snippets.

@csharpforevermore
Created December 16, 2019 17:16
Show Gist options
  • Save csharpforevermore/9e596835d5d34d8381105fef142e6168 to your computer and use it in GitHub Desktop.
Save csharpforevermore/9e596835d5d34d8381105fef142e6168 to your computer and use it in GitHub Desktop.
Truncate a paragraph back to last full sentence
var s = "An example. Another example. This is omitted";
s = s?.Substring(0, s.LastIndexOf(". ")+2); // cuts back to last full sentence
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment