char replaceJunk(char c) {. // Only keep alphas, space (as a delimiter), and '. return (isalpha(c) || c == '\'') ? c : ' ';. }.
確定! 回上一頁