I have a input with any character and i need to have a array that separates the words in the input. The array needs to have just the letters (is in spanish, so it includes accented letters). My code does it, it just fails to recognize the special spanish characters as "¡", "¿", etc.
how can i manage to correct this?... here is my code.
string x[100];
int n = 0;
while (entrada){
entrada>>x[n];
n++;
}
n--;
for(int j = 0;j<n;j++){
cout<<x[j]<<"/";
}
string y[100];
for(int i = 0;i<n;i++)
for(int j = 0; j<x[i].length();j++){
if(!ispunct(x[i][j]))
y[i]+=x[i][j];
}
with this code I got this input and output:
input
=======
Hola,
Cómo estás?
Espero que muy bien. ¡!!!
El otro día que fui al cine me acordé de la
película que vimos el año pasado.
output
========
Hola/Cómo/estás/Espero/que/muy/bien/¡/El/otro/día/que/fui/al/cine/me/acordé/de/la/película/que/vimos/el/año/pasado/
the output is just the array printed separated by a "/"