美文网首页
面试题 01.03. URL化

面试题 01.03. URL化

作者: xy啊_46b8 | 来源:发表于2020-05-02 14:30 被阅读0次

    题目描述:

    URL化。编写一种方法,将字符串中的空格全部替换为%20。假定该字符串尾部有足够的空间存放新增字符,并且知道字符串的“真实”长度。(注:用Java实现的话,请使用字符数组实现,以便直接在数组上操作。)

    示例1:

    输入:"Mr John Smith    ",13

    输出:Mr%20John%20Smith

    示例2:

    输入:"               ",5

    输出:%20%20%20%20%20

    提示:

    字符串长度在[0, 500000]范围内。


    public StringreplaceSpaces(String S,int length){

        return S.substring(0, length).replaceAll(" ", "%20");

    }

    public static void main(String[] args){

        String S="              ";

        int index =5;

        ooot oors =new ooot();

        System.out.println(oors.replaceSpaces(S,index));

    }

    相关文章

      网友评论

          本文标题:面试题 01.03. URL化

          本文链接:https://www.haomeiwen.com/subject/mgckghtx.html