需要帮助在java中形成一个正则表达式

时间:2015-03-25 14:29:07

标签: java regex selenium-webdriver

我想使用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;

1 个答案:

答案 0 :(得分:1)

很难说没有原始文本和预期结果,但是你的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)而不是正则表达式来抓取标记。