我想使用Java语言在页面源中找到一个regx及其出现的地方。我尝试搜索的值如下程序所示。
标签之间可能有一个或多个空格。我无法为此值形成一个regx。有人可以帮我找到此值的regx吗?
我检查regx的程序如下所示-



String regx=""<img height=""1"" width=""1"" style=""border-style:none;"" alt="""" src=""//api.adsymptotic.com/api/s/trackconversion?_pid=12170&_psign=3841da8d95cc1dbcf27a696f27ccab0b&_aid=1376&_lbl=RT_LampsPlus_Retargeting_Pixel""/>";

WebDrive driver = new FirefoxDriver();
driver.navigate().to("abc.xom");
int count=0, found=0;
source = driver.getPageSource();
source = source.replaceAll("\\s+", " ").trim();
pattern = Pattern.compile(regx);
matcher = pattern.matcher(source);

while(matcher.find())
{
    count++;
    found=1;
}
if(found==0)
{
    System.out.println("Maximiser not found");
    pixelData[rowNumber][2] = String.valueOf(count) ;
    pixelData[rowNumber][3] = "Fail";
}
else
{
    System.out.println("Maximiser is found" + count);
    pixelData[rowNumber][2] = String.valueOf(count) ;
    pixelData[rowNumber][3] = "Pass";

}
count=0; found=0;

最佳答案

没有原始文本和预期结果很难说,但是Pattern显然不会按原样编译。

您应该对代码和\"进行单转义双引号(\\?)和双转义特殊字符(即Pattern)。

符合以下条件的东西:

String regx="<img height=\"1\" width=\"1\" style=\"border-style:none;\" " +
            "alt=\"\" src=\"//api.adsymptotic.com/api/s/trackconversion" +
            "\\?_pid=12170&_psign=3841da8d95cc1dbcf27a696f27ccab0b" +
            "&_aid=1376&_lbl=RT_LampsPlus_Retargeting_Pixel\"/>";


另外,请考虑使用适当的框架(即HTML的JSoup)而非正则表达式来抓取标记。

07-26 07:54