请检查以下代码。
Pattern pxPattern = Pattern.compile("^.*[0-9]+(%|pt|em).*$");
Matcher pxMatcher = pxPattern.matcher("onehellot455emwohellothree");
System.out.println(pxMatcher.matches());
System.out.println(pxMatcher.group(0));
我想减去字符串 445em。我正在使用代码来检查 CSS。表示我想提取
只是像 45em 或 50% 这样的值。
谢谢。