How would I go about importing a text in to an array in ASCII code. Not the actual characters, but the number representation.
e.g. the .txt contains
"sample text"
I want it to load
115 97 109 112 108 101 32 116 101 120 116
in to a 2D array.
I dont really know how to approach this other than writing a separate program outside of what I want to do that loads each individual character and "manually" change it to a number.