fixed bug where e is capitalized

This commit is contained in:
2025-05-06 13:23:32 -04:00
parent cfbdc16bb1
commit ece15459ed
3 changed files with 75 additions and 28 deletions

View File

@@ -78,6 +78,8 @@ func main() {
continue
}
// Lower case the E
upc = strings.ToLower(upc)
// Split scientific notation at the e+ point
upcArray := strings.Split(upc, "e+")