Java中的字符串解析

Java中的字符串解析,第1张

Java中的字符串解析

您可以使用正则表达式:

import java.util.regex.*;class A {        public static void main(String[] args) {     String s = "this is a good example with 234 songs";     Pattern p = Pattern.compile("this is a (.*?) example with (\d+) songs");     Matcher m = p.matcher(s);     if (m.matches()) {  String kind = m.group(1);  String nbr = m.group(2);  System.out.println("kind: " + kind + " nbr: " + nbr);     }        }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5428983.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存