Java开发网 Java开发网
注册 | 登录 | 帮助 | 搜索 | 排行榜 | 发帖统计  

您没有登录

» Java开发网 » Java SE 综合讨论区  

按打印兼容模式打印这个话题 打印话题    把这个话题寄给朋友 寄给朋友    该主题的所有更新都将Email到你的邮箱 订阅主题
flat modethreaded modego to previous topicgo to next topicgo to back
作者 Re:JAVA的一个小程序!如何写(只显示字符串中的数字) [Re:why]
Freax





发贴: 13
积分: 1
于 2006-07-03 08:55 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
why wrote:

  public static String getDigit(String s) {
    if (s == null) { return null; }

    int len = s.length();
    if (len == 0) { return ""; }
     //could use s.toCharArray()
    StringBuffer sb = new StringBuffer();
    for (int i = 0; i < len; i++) {
      char c = s.charAt(i);
      //could use Character.isDigit(char)
      if (c >= '0' && c <= '9') {
        sb.append(c);
      }
    }
    return sb.toString();
  }





话题树型展开
人气 标题 作者 字数 发贴时间
9089 JAVA的一个小程序!如何写(只显示字符串中的数字) 晒太阳的牙齿 55 2006-07-02 09:37
7340 Re:JAVA的一个小程序!如何写(只显示字符串中的数字) why 390 2006-07-02 12:07
7508 Re:JAVA的一个小程序!如何写(只显示字符串中的数字) Freax 829 2006-07-03 08:55
7347 Re:JAVA的一个小程序!如何写(只显示字符串中的数字) why 154 2006-07-03 10:49
7274 Re:JAVA的一个小程序!如何写(只显示字符串中的数字) sunjavaduke 866 2006-07-08 22:31
7615 Re:JAVA的一个小程序!如何写(只显示字符串中的数字) 晒太阳的牙齿 7 2006-07-02 13:07
7370 Re:JAVA的一个小程序!如何写(只显示字符串中的数字) athlon 100 2006-07-03 17:04
7229 Re:JAVA的一个小程序!如何写(只显示字符串中的数字) sunjavaduke 850 2006-07-08 22:35
7617 Re:JAVA的一个小程序!如何写(只显示字符串中的数字) smartmen 10 2006-07-06 15:28
7490 Re:JAVA的一个小程序!如何写(只显示字符串中的数字) 晒太阳的牙齿 5 2006-07-06 21:59
7424 Re:JAVA的一个小程序!如何写(只显示字符串中的数字) sunjavaduke 2119 2006-07-08 22:38

flat modethreaded modego to previous topicgo to next topicgo to back
  已读帖子
  新的帖子
  被删除的帖子
Jump to the top of page

   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923