Quote:
Originally Posted by whosyourdaddy
lets say
szstring[32] = "I Love Apples"
how can i remove the first 2 characters in that string and make it become
szstring[32] = "Love Apples"
i know this is a poor examples i just need to learn how to remove the first to characters in a string
|
If you just want to return that portion of the string starting at Love, use szstring[2] instead of szstring.
to actually remove it from the string
format( szstring, 32, "%s" , szstring[2])
__________________