我坚持使用正则表达式和Java。

我的输入字符串如下所示:

"EC: 132/194 => 68% SC: 55/58 => 94% L: 625"

我想将第一个和第二个值(即132194)读出到两个变量中。否则,字符串是静态的,只有数字改变。

最佳答案

我假设“第一个值”是132,第二个是194。

这应该可以解决问题:

String str = "EC: 132/194 => 68% SC: 55/58 => 94% L: 625";

Pattern p = Pattern.compile("^EC: ([0-9]+)/([0-9]+).*$");
Matcher m = p.matcher(str);

if (m.matches())
{
    String firstValue = m.group(1); // 132
    String secondValue= m.group(2); // 194
}

10-05 18:07