请实现一个函数,把字符串 s 中的每个空格替换成"%20"。
示例 1:
输入:s = “We are happy.”
输出:“We%20are%20happy.”
就我而言,此题考察的仅仅只是方法replace的运用。
下面展示一些 Solution
。
class Solution { public String replaceSpace(String s) { if(s == null){ return null; }else{ //String s1 = new String(s); String s2 = new String(s).replace(" ","%20"); return s2; } } }