'123123'.replace('2', '4'); // 124123 <-- replace only first symbol '2' '123123'.replaceAll('2', '4'); // 124124 <-- replace all symbols '2'