Skip to content

Instantly share code, notes, and snippets.

@csharpforevermore
Created December 16, 2019 17:16
Show Gist options
  • Save csharpforevermore/f8f9a090624e1ede28309367f6bddd60 to your computer and use it in GitHub Desktop.
Save csharpforevermore/f8f9a090624e1ede28309367f6bddd60 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, Math.Min(s.Length, Model.NewsMaxChars));
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