Is there a way to find specific values within a CSV file using Go lang?
I have a program to read the CSV data into a variable, but now I need to find a specific row of data within the variable.
My variable contains Latitude, Longitude, Date, Time, Measurement, and misc data. I need to search for a specific Lat, Long, Date, and Time, and to be able to pull out the Measurement and misc data from the accompanying row.
Is there something similar to Excel's "vlookup" or "hlookup" command? or something like a "scan", "search", or "find"? If so, how would I go about implementing this command?
Thanks,
Steve