0
votes
1answer
20 views
Help with parsing XML document using ‘Reader’ and Nokogiri
Hi. I am a newbie when it comes to using Nokogirie reader to parse an xml file. Here is the xml file I want to parse and sample code:
<?xml version='1.0' encoding='UTF-8'?> …
2
votes
4answers
100 views
What is the best way to crawl a login based sites?
I've to automate a file download activity from a website (similar to, let's say, yahoomail.com). To reach a page which has this file download link, i've to login, jump from page to …
0
votes
2answers
19 views
How to parse a rendered web page containing javascript.
How can one extract data from a rendered web page?
In which java script would update the data with time.
Is it possible to write user script which can access varibles from webpage …
3
votes
2answers
118 views
BeautifulSoup - easy way to to obtain HTML-free contents.
I'm using this code to find all interesting links in a page:
soup.findAll('a', href=re.compile('^notizia.php\?idn=\d+'))
And it does its job pretty well. Unfortunately inside t …
0
votes
4answers
47 views
Making BeautifulSoup ignore contents inside script tags
I have been trying to get BeautifulSoup (3.1.0.1)to parse a html page that has a lot of javascript that generates html inside tags.
One example fragment looks like this :
<ht …
0
votes
3answers
31 views
Getting elements by type in malformed HTML
What's the easiest way in Java to retrieve all elements with a certain type in a malformed HTML page? So I want to do something like this:
public static void main(String[] args) …
4
votes
5answers
114 views
How can I find the contents of a div using Perl’s HTML modules, if I know a tag inside of it?
Ever since I asked how to parse html with regex and got bashed a bit (rightfully so), I've been studying HTML::TreeBuilder, HTML::Parser, HTML::TokeParser, and HTML::Elements Perl …
1
vote
2answers
49 views
Matching pair tag with regex
I'm trying to retrieve specific tags with their content out of an xhtml document, but it's matching the wrong ending tags.
In the following content:
<cache_namespace name="con …
0
votes
3answers
106 views
Parse HTML Page For Links With Regex Using Perl [closed]
Possible Duplicate:
How can I remove external links from HTML using Perl?
Alright, i'm working on a job for a client right now who just switched up his language choice to …
1
vote
6answers
141 views
Java: I have a big string of html and need to extract the href=”…” text…
I have this string containing a large chunk of html and am trying to extract the link from href="..." portion of the string. The href could be in one of the following forms:
<a …
2
votes
4answers
61 views
How to replace text not within a specific-Tag in JavaScript
I have a string (partly HTML) where I want to replace the string :-) into bbcode :wink:. But this replacement should not happen within <pre>, but in any other tag (or even no …
0
votes
2answers
52 views
Easiest way to fetch all href contents on page in Ruby?
I'm writing a simple web crawler in Ruby and I need to fetch all href contents on the page. What is the best way to do this, or any other web page source parsing, since some pages …
0
votes
1answer
40 views
How do you escape regex strings in Freemarker
I am using the matches string builtin and need to run a regex pattern
(Views:).*?(span>)(.*?)(<\/div)
However, Freemarker freaks out because of the ">" character which is a …
1
vote
4answers
87 views
Regex PHP, Match all links with specific text.
Hi,
I am looking for a regular expression in PHP which would match the anchor with a specific text on it. E.g I would like to get anchors with text mylink like:
<a href="blabla …
0
votes
1answer
32 views
Regex to move image in markup with PHP when publishing content with TinyMCE
Hi guys,
I am using TinyMCE to publish content to my site. I have the problem whereby I can only insert an image inside another element, eg a paragraph, even if I place the cursor …
