Trying to prevent excess arrays; anyone have an easy way to have for example string Array[0]="_126" be able to be subtracted straight from an integer value? Like typecasting or something?
Array[0]="_126";
I want to subtract Bars-Array[0] without needing to worry about the _ so we can effectively do the computation without generating 126 without the _ in a separate array. Does it even matter PC Run time wise?
StringToInteger(Array[0]) not it
I dont want to use anything that is not in the vain of typecasting . Know about stringsubtract etc
Array[0]="_126";
I want to subtract Bars-Array[0] without needing to worry about the _ so we can effectively do the computation without generating 126 without the _ in a separate array. Does it even matter PC Run time wise?
StringToInteger(Array[0]) not it
I dont want to use anything that is not in the vain of typecasting . Know about stringsubtract etc
Last edited: