130th Boston Marathon — Monday, April 20, 2026 Runner pace: ~10:00/mile | Wave start: 11:20 AM | Estimated finish: ~3:42 PM
| Mile | Location | Her ETA | Landmark |
| private string ellipsesForHighlights(string highlight, string original) | |
| { | |
| //remove html in highlight | |
| string stripped_highlighted_item = StripHtml(highlight); | |
| // if the beginning of the highlighted text doesn't match the original, it has been clipped | |
| int tmp = original.IndexOf(stripped_highlighted_item); | |
| bool front_ellipsis = tmp != 0; | |
| // if the last 10 characters of the highlighted text doesn't match the original, it has been clipped |