首页 > 代码库 > 在一串字符串中找到与正则表达式匹配的字符串?(例如:export_20170717_out.log 找到20170717)
在一串字符串中找到与正则表达式匹配的字符串?(例如:export_20170717_out.log 找到20170717)
如题:提取字符串:export_20170717_out.log
对应的日期:20170717
package dodo; import java.util.regex.Matcher; import java.util.regex.Pattern; public class demo { static String cmd="export_20170717_out.log"; public static void main(String[] args) { String regex="\\d{8}"; Pattern pa=Pattern.compile(regex); Matcher ma=pa.matcher(cmd); if(ma.find()){ System.out.println("取到的日期为:"+ma.group(0)); } } }
输出结果为:
取到的日期为:20170717
在一串字符串中找到与正则表达式匹配的字符串?(例如:export_20170717_out.log 找到20170717)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。