次のコードを確認してください。
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% のような値です。
ありがとう。