Problem with reading a .csv file

If the semicolon ; character is the delimiter for separating the values within a row, it’s not a valid CSV :registered: file anymore!

Instead, you’re gonna need to rely on the following trio: :hammer_and_pick:

  1. loadStrings(): https://Processing.org/reference/loadStrings_.html
  2. split(): https://Processing.org/reference/split_.html
  3. trim() (rarely needed though): https://Processing.org/reference/trim_.html