I like the fact that I can get the ASCII value of a character within a string by going:
but I was a little bummed out that I'm not allowed to do this:
to change the last character to something else.
This would be a handy feature that is much shorter than using other string handling commands to change the last character (or some other character within the string).
Russell
str:String = "Hello" LastChar = str[4]
but I was a little bummed out that I'm not allowed to do this:
str:String = "Hello" str[4] = Asc("X")
to change the last character to something else.
This would be a handy feature that is much shorter than using other string handling commands to change the last character (or some other character within the string).
Russell