欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

找出一个字符串中的数字

程序员文章站 2022-07-13 11:34:53
...
	//找到整个字符串中的数字
String filecontext="sdfsdlfj465ff46548f98xcz1058fg";	
Pattern p=Pattern.compile("[\\d]+.[\\d]+");
		Matcher m=p.matcher(filecontext);
		while(m.find()){
			String strNumber = m.group();
						
		}