package main /* func trimNonNumericPrefix(s string) string { // Find the index of the first character that IS a digit. firstDigitIndex := strings.IndexFunc(s, unicode.IsDigit) // If no digit is found, IndexFunc returns -1. // In this case, the result should be an empty string. if firstDigitIndex == -1 { return "" } // Return the substring starting from the first digit. return s[firstDigitIndex:] } */