for example:
I know you can do 0@ += 3 to get "ASE"
but is there a similar way of getting the first 3 characters of any string?
Code:
alloc 0@ 64
format 0@ "UGBASE" //this could be any unknown string
//need to get only the first three characters of the string to end up with UGB
free 0@
I know you can do 0@ += 3 to get "ASE"
but is there a similar way of getting the first 3 characters of any string?