Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I want to get the xpath count of all the divs/links/.. that have text matching some regular expression. For example:

<span> day 2 night </span>
<span> day 4 night </span>
<span> day 17 night</span>

I would like to be able to call:

sel.get_xpath_count('regexp:day d night')

and have it return 2. (This is a simple example of course, I would like to use all kinds of regular expressions)

Is this possible, and how to do it?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
614 views
Welcome To Ask or Share your Answers For Others

1 Answer

Use the dom= protocol which allows you to use javascript. And javascript has regexp:

# sorry, example in Perl:
$sel->get(qq{dom=(function(){
    var x = document.getElementsByTagName('span');
    var result = [];
    for (var i=0;i<x.length;i++) {
        var txt = x[i].innerHTML;
        if (txt.match(/day d night/)) {
            result.push(x[i]);
        }
    }
    return result;
})()});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...