我需要获取特定jsp中所有情况的条件变量名称我正在逐行读取jsp并搜索特定模式,例如一行说它检查找到匹配项的两种类型的cond
<c:if condition="Event ='Confirmation'">
<c:if condition="Event1 = 'Confirmation' or Event2 = 'Action'or Event3 = 'Check'" .....>
期望的结果是所有 cond 变量的名称 - Event,Event1,Event2,Event3我写了一个解析器,它只满足第一种情况但无法找到第二种情况的变量名。需要一个模式来满足它们。
String stringSearch = "<c:if";
while ((line = bf.readLine()) != null) {
// Increment the count and find the index of the word
lineCount++;
int indexfound = line.indexOf(stringSearch);
if (indexfound > -1) {
Pattern pattern = Pattern
.compile(test=\"([\\!\\(]*)(.*?)([\\=\\)\\s\\.\\>\\[\\(]+?));
Matcher matcher = pattern.matcher(line);
if (matcher.find()) {
str = matcher.group(1);
hset.add(str);
counter++;
}
}