I need to copy the string into a character array the largest number of times you can within the array. In this case OPERATIVO would enter 3 times in the char array and the rest of the array could be whatever character. That I can do?
public void copyToArray( char [] arrayCharacters ){
String var = new String("OPERATIVO");
for(int i=0 ; i < 30 ; i++){
...
}
}