我正在尝试在两个单词之间搜索一个单词,并在 Java 中使用 Pattern 类。到目前为止,我的代码是:
Pattern pattern = Pattern.compile("(?<=PlaintiffAtty_0).*?(?=</span>)");
Matcher matcher = pattern.matcher(sourcecode.toString());
while (matcher.find()) {
System.out.println(matcher.group().toString());
第一个模式词“PlaintiffAtty_0”将随着数量的增加而变化,所以我想将它用作变量。如何在此处插入变量,而不必每次都更改字符串?