假设我输入2017-5-23 9:45:56,怎么得到2017,5,23,9,45,56.
5条回答 默认 最新
- threenewbee 2019-01-01 12:23关注
import java.util.regex.Matcher; import java.util.regex.Pattern; class Untitled { public static void main(String[] args) { String source = "2017-5-23 9:45:56"; String regex = "\\d+"; Pattern pattern = Pattern.compile(regex); Matcher matcher = pattern.matcher(source); while (matcher.find()) { int x = Integer.parseInt(matcher.group()); System.out.println(x); } } }
2017
5
23
9
45
56如果问题得到解决,请点我回答左上角的采纳和向上的箭头,谢谢
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报