私はこれが何百万回も聞かれたことを知っていますが、私はそれを働かせることはできません。 ゲームのWeb API(http://pathofexile.com/api/public-stash-tabs - 注意深く、〜5MBのデータがGETから検索されます)から文字列をフィルタリングしています。後で置き換える必要があるため、私が見ている属性の種類を見つけようとしています。 (各Itemオブジェクト内の "explicitMods"配列を見て、それがどの修飾子の型かを特定しています)。Match&Extract
私の目標は、私が扱っている修飾子の種類を最初に特定し、 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)
、あなたの助けのために事前にありがとうござい
ありがとうございます。 JavaScriptの心がJavaに漏れる、ばかげたミス。 – Qbert