I am new to Julia and struggling to find the integer value of a string.
I know that calling int ('a') will return the value I'm looking for, but I cannot figure out how to do the same for int ("a").
Is there a way to convert a string value to a character?
UPDATE: Yes, the solution you provided works, but not in my case. I probably should have been more specific. This is what my array of strings looks like
array = ["12", "13", "14"] ["16", "A"]
array [2] [2] returns "A" not "A"
source
share