美文网首页
字符串翻转

字符串翻转

作者: ONEay | 来源:发表于2018-09-12 11:09 被阅读0次

    String:"this is my hello world"
    结果:[world, hello, my, is, this]

    /**
      * 字符串翻转
      * @param values
      * @param reg 字符串split正则
      */
     public static void reverse(String values,String reg) {
       if (values == null ){
         return;
       }
    
       String[] value = values.split(reg);
       int a = 0 ;
       int b = value.length-1;
       while (a < b){
         String temp = value[a];
         value[a] = value[b];
         value[b] = temp;
         a++;
         b--;
       }
    
       System.out.println(Arrays.toString(value));
     }
    
    

    相关文章

      网友评论

          本文标题:字符串翻转

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