I'm trying to delete all instances of . , ' ( ) in a string
char *mystring
I'm not sure how to do this - the compiler won't let me substitute with an empy string. (i.e., mystring[0] = ''; doesn't work).
Is tokenization and concatenation the way to go or is there a simpler function I am missing?
Thanks.
char *mystring
I'm not sure how to do this - the compiler won't let me substitute with an empy string. (i.e., mystring[0] = ''; doesn't work).
Is tokenization and concatenation the way to go or is there a simpler function I am missing?
Thanks.