The input file for creating CSVs had a few rows where double dashes appeared (--). In the past we treated these the same as a single dash, meaning both double and single dashes would be replaced with a comma.
e.g.
FROM: NASHVILLE-DAVIDSON--MURFREESBORO--FRANKLIN, TN
TO: Nashville, Davidson, Murfreesboro, Franklin - TN
The correct translation would be to keep the single dash, and only replace double-dashes with commas
FROM: NASHVILLE-DAVIDSON--MURFREESBORO--FRANKLIN, TN
TO: Nashville-Davidson, Murfreesboro, Franklin - TN
The input file for creating CSVs had a few rows where double dashes appeared (
--
). In the past we treated these the same as a single dash, meaning both double and single dashes would be replaced with a comma.e.g.
The correct translation would be to keep the single dash, and only replace double-dashes with commas