Hello all
I want to be able to search a string and remove non a-z chars and also search for certain words and then remove them
ie. char string[25]="STEPHEN JOHNSON - LTD"
So i use isalpha to get rid of the non a-z string
i am left with STEPHENJOHNSONLTD
LTD is the word i want to remove
How do i go about this?
Any help is much appreciated.