I have to replace a string whit special character like this: XY_Universit�-WWWWW-ZZZZZ
in another one like: XY_Universita-WWWWW-ZZZZZ
.
I tryed solutions like stringToReplace.replaceAll(".*Universit.*", "Universita");
but it replace all the string with the word ''Universita" and it isn't what i want.
Thanks in advance
F