Java如何使用正则表达式提取子字符串

Java如何使用正则表达式提取子字符串,第1张

Java如何使用正则表达式提取字符串

假设你想要单引号之间的部分,请将此正则表达式与一起使用Matcher:

"'(.*?)'"

例:

String mydata = "some string with 'the data i want' inside";Pattern pattern = Pattern.compile("'(.*?)'");Matcher matcher = pattern.matcher(mydata);if (matcher.find()){    System.out.println(matcher.group(1));}

结果:

the data i want


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存