正则表达匹配,Java。匹配&提取

时间:2017-02-21 01:52:43

标签: java regex pattern-matching

我知道这已被问了一百万次,但我无法让它发挥作用。 我正在过滤游戏网络API中的字符串(http://pathofexile.com/api/public-stash-tabs - 小心,大约5MB的数据将从GET中检索),试图找到我正在查看的属性类型,因为我后来需要更换它。 (我正在查看每个Item对象中的“explicitMods”数组,并确定它是哪种类型的修饰符。)

我的目标是首先确定我正在处理哪种类型的修饰符,然后使用String.replaceAll##替换正确的字符串,以便稍后我可以用实际替换##价值和搜索。我将存储值或范围,以便稍后我可以识别匹配的内容。 String.replaceAll未包含在此处,因为该位工作正常。

这是我的测试课程。所有测试都失败了我确实在regex101.com上测试了每个模式,但是他们只有javascript,php,python和golang测试人员。每个方法注释都有一个指向我在regex101上进行的测试的链接。

package arbitrary.package.name;

import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

import static org.junit.Assert.assertTrue;

public class RegexTests {

  private static Logger log = LoggerFactory.getLogger(RegexTests.class);

  @Test
  public void testIntegers() {
    // https://regex101.com/r/PVfYGX/1
    assertTrue(compileAndMatch("/.*(.\\d+).+(.\\d+).*/", "Adds 80 to 115 Physical Damage"));
  }

  @Test
  public void testIntegersWithRanges() {
    // https://regex101.com/r/u3UQqM/1
    assertTrue(compileAndMatch("/.*(\\d+-\\d+).*(\\d+-\\d+).*/", "Adds (4-5) to (8-9) Physical Damage"));
  }

  @Test
  public void testDecimals() {
    // https://regex101.com/r/CpaV1y/1
    assertTrue(compileAndMatch("/.*(\\d+.?\\d+).*/", "0.2% of Elemental Damage Leeched as Life"));
  }

  private boolean compileAndMatch(String regex, String text) {
    Pattern pattern = Pattern.compile(regex);
    Matcher matcher = pattern.matcher(text);
    log.info("{} {} \"{}\"", regex, matcher.matches() ? "matches" : "does not match", text);
    return pattern.matcher(text).matches();
  }
}

示例堆栈跟踪(都是相同的):

2017-02-20 20:35:44.876 [main] INFO  arbitrary.package.name.RegexTests - /.*(\d+.?\d+).*(\d+.?\d+).*/ does not match "Adds (4-5) to (8-9) Physical Damage" 

java.lang.AssertionError
    at org.junit.Assert.fail(Assert.java:86)
    at org.junit.Assert.assertTrue(Assert.java:41)
    at org.junit.Assert.assertTrue(Assert.java:52)
    at arbitrary.package.name.RegexTests.testIntegersWithRanges(RegexTests.java:23)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

提前感谢您的帮助,

2 个答案:

答案 0 :(得分:1)

使用

".*(\\d+-\\d+).*(\\d+-\\d+).*"

爪哇

String regex = ".*(\\d+-\\d+).*(\\d+-\\d+).*";
String text = "Adds (4-5) to (8-9) Physical Damage";
Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher(text);

System.out.println(matcher.matches());

答案 1 :(得分:0)

您应该删除开始和结束位置的/