架构师之正则表达式(四)---------------从字符串中提取一串数字.

前端之家收集整理的这篇文章主要介绍了架构师之正则表达式(四)---------------从字符串中提取一串数字.前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
1.前言.
如题.
2.代码.

	public String getTestString(final String remark) {
             //从字符串中提取一个12位的0-9的数字.
		String strTemp = "";
		if (null == remark) {
			return "";
		}
		final Pattern p = Pattern.compile("[0-9]{12,}+");
		final Matcher m = p.matcher(remark);
		while (m.find()) {
			strTemp = m.group(0);
		}
		return strTemp;
	}
原文链接:https://www.f2er.com/regex/361048.html

猜你在找的正则表达式相关文章