Breaking a string into separate variables

Hi. Noob question—what is the best way to break a text string (sourced from an imported .csv) into individual variables (new char variable or similar for each character in the string)?

The goal is to input text and convert it into a series of numeric values that can be provided as output.

The steps I am attempting to follow are:
Load csv with one character per cell
Create table from csv
Create variable (char?) for each cell of table
Convert each cell variable to a numeric (int or float) variable

Currently stuck at step 4 but open to other approaches as well.

Hello,

:)

Thank you—that is very helpful! I had missed that int() converts to unicode :slight_smile:

This will help with the next stage very much.

The part where I am currently stuck is how to get the data out of the table in the form of a sequence of variables. Right now I am using String / getString to pull the data from each cell of the imported csv but have no way to make variables from that (maybe because I don’t know how or maybe because it is not possible?—I’m not sure).

Hello,

Some stuff that may pique your interest:

I use the last one when receiving a String of data that is comma separated from the Arduino.

Related:

:)