码迷,mamicode.com
首页 > 编程语言 > 详细

js 、 java去除字符串中的数字

时间:2017-07-15 15:56:20      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:删除字符串   数字   print   bsp   keyword   rgs   images   tar   ges   

  1. public class Hello{  
  2.     public static void main(String[] args){  
  3.         String str="123assume345contribute";  
  4.         System.out.println(str.replaceAll("\\d+",""));  
  5.     }  
//删除字符串中的数字。 
function trimNumber(str){
return str.replace(/\d+/g,‘‘);
}

技术分享

 

js 、 java去除字符串中的数字

标签:删除字符串   数字   print   bsp   keyword   rgs   images   tar   ges   

原文地址:http://www.cnblogs.com/water-1/p/7182610.html

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