📄 e075. replacing characters in a string.txt
字号:
Since strings are immutable, the replace() method creates a new string with the replaced characters.
// Replace all occurrences of 'a' with 'o'
String newString = string.replace('a', 'o');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -