Ver originalString str = "Pepe 34"; System.out.println(str.replaceAll("([A-z]+) ([0-9]+)", "$1 tiene $2 años")); // Pepe tiene 34 años