Method: Strip special chars copy
Function name: cpystrp
Parameter list: (CHAR input)
Return type: CHAR
What the method does: Strips any character from the input string that is not alphabetic (upper and lower case) and is not a numeric digit from 0 to 9 inclusive and replaces it with a blank. The method copies all characters one character at a time from source to target. For example:
the input string 'name&#' is sent to the target as 'name '.
the input string 'xAaBa $%^ \0 ,:;@ 1234<<>>?/"x' is sent as 'xAaBa 1234 x'