码迷,mamicode.com
首页 > 其他好文 > 详细

解密字符串

时间:2015-03-22 00:20:11      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

给一字符串如a2bc3d1 转换成aabcbcbcd

 1   String decode(String str) {
 2         String word="";
 3         StringBuilder result=new StringBuilder("");
 4         for(int i=0;i<str.length();i++)
 5         {
 6             String temp=str.charAt(i)+"";
 7             if(temp.matches("[a-z]"))
 8             {
 9                 result.append(temp);
10                 word+=temp;
11             }
12             else
13             {
14                 int times=Integer.parseInt(temp)-1;
15                 for(int j=0;j<times;j++)
16                     result.append(word);
17                 word="";
18             }
19         }
20         return result.toString();
21         
22     }

 

解密字符串

标签:

原文地址:http://www.cnblogs.com/sweetculiji/p/4356430.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!