ChaoticWeg / slack-rangersbot

Watches the Rangers so you don't have to
http://chaoticweg.cc/slack-rangersbot
GNU General Public License v3.0
0 stars 0 forks source link

Weird MLB sentence formatting #1

Closed ChaoticWeg closed 7 years ago

ChaoticWeg commented 7 years ago

Examples:

With Miguel Cabrera batting, A.  J.   Griffin picks off Justin Upton at 1st on throw to Mike Napoli.
Alex Presley grounds into a double play, second baseman Rougned Odor to first baseman Mike Napoli.   Victor Martinez out at 2nd.

Notice the double-space after every single full-stop. Probably need to do the equivalent of s/\\s+/ /g.

ChaoticWeg commented 7 years ago

Fixed by running the play result description through a String#replace(/\s+/g, ' ') to replace all whitespace with a single space. There's no reason why we would ever need any sort of whitespace that's not just a single space.