0
votes
0answers
35 views

How to replace a value of an attribute in JS function on run time?

I am working on my Java application that (besides other things) produces HTML. In this HTML I need to change a value of one attribute inside one JS function every time I run it. The process is like ...
0
votes
2answers
39 views

PHP Get contents of webpage

So I am using the PHP Simple HTML DOM Parser to get the contents of a webpage. After I knew what I was doing was right, I still got the error that there was nothing to be found. So here's what I am ...
0
votes
1answer
40 views

Can't parse a second table with beautifulsoup even if the first one works?

I am trying to parse tables using beautifulsoup. The first one on my page was easy but I cannot parse a similar table on the same page. I do not understand why. Here is the code. Thanks in advance ...
-1
votes
2answers
55 views

Wrapping Sentences within <p> Tags with <span>'s, But Keep Other Tags

To give you an idea of what I need, I have been using the below code to parse content within tags and wrap each sentence within tags so I can then interact with sentences on a page. ...
0
votes
2answers
50 views

Simple HTML Parser issue

Hi so I'm trying to parse the ratemyprofessor website for professor name and comments and convert each div into plaintext. Here is the div class structure that I'm working with. <div ...
0
votes
2answers
70 views

PHP - Parsing html tables via DOM

So I am using the PHP Simple HTML DOM Parser and I am trying to get the table list of Top Goalscorers from this webpage: ...
1
vote
1answer
56 views

Simple HTML DOM Parser - Get all plaintex rather than text of certain element

I tried all the solutions posted on this question. Although it is similar to my question, it's solutions aren't working for me. I am trying to get the plain text that is outside of <b> and it ...
0
votes
1answer
54 views

How can I get this value using HtmlAgilityPack?

Not sure what that's called but it represents the user that created the forum thread: <a href="http://myforum.com/forum/most-fav-action-movies/" id="thread_title_10178" ...
0
votes
0answers
31 views

How to get url of the captcha from the source file

I have a piece of html code: <div style="margin-left:180px;"> <script type="text/javascript" ...
0
votes
0answers
22 views

jtidy fails to parse html - options

So I was trying to evaluate a couple of the HTML parsers and gave JTidy a try. Trying to parse this URL: http://htmlcleaner.sourceforge.net/doc/org/htmlcleaner/TagNode.html Gives these errors: ...
1
vote
2answers
52 views

Parsing HTML in Android

I have html code that looks like <td align="right"><select name="Hour"> <option >00</option> <option >01</option> <option >02</option> <option ...
-1
votes
4answers
80 views

Regular expression to match after first % and before last %

I need a regular expression that can match what is inside the "%" marks in the following string: 1) Bla bla bla %yada yada yada% bla bla. Even if the form is like this: 2) Bla bla bla %yada ...
0
votes
2answers
64 views

Parse HTML with HTMLParser in Python3

I've got a piece of code in Python 3 that successfully parses HTML with HTMLParser in Windows, the problem is that I want to run the script also in Linux and it doesn't seem to be working. I retrieve ...
0
votes
0answers
46 views

How to parse HTM into NSString objects that contain segments of HTML code rather than its content

I have a htm file (exported from Excel using UTF-8 encoding) containing a table of Japanese characters and phonetic symbols. Get a sample file here. I've added the htm file into my Xcode project and ...
0
votes
1answer
112 views

Delphi-search and retrieval value in text

Im downloading page to memo1.text and in this text i need to extract some value's to variables. necessary part of downloaded code: <tr> <td style="text-align: left;">Nazwa1</td> ...
0
votes
0answers
85 views

PHP Simple HTML DOM Parser link and title

<div class="info"> <a class="firmTitle" href="http://rekvizitai.vz.lt/imone/javema/" title="Javema, UAB (61700)">Javema</a></div> I have 5 div likes this I want get from each ...
1
vote
2answers
48 views

Writing data into a HTML template

I have a HTML template in my project's bundle. It is structured in such a way that i need to pass arguments to the various %@'s as shown @"<h3>Test</h3>" "<div ...
1
vote
1answer
55 views

How do I get the text inside of the <a> This Text </a> tags using cURL?

I got this error "Fatal error: Call to undefined method DOMText::getAttribute()" with this code. I want to capture the text of a link not the source (I don't know what its called).Could someone ...
0
votes
0answers
193 views

HTML parsing Objective-c HTMLparser.h

I use enter link description here, but i But I did not get my desired parse html. <td class=fromThumb> <a href='/test' title="View test's profile"> <img ...
2
votes
1answer
72 views

command line tidy for HTML that does not insert HTML global structures like <!DOCTYPE>, <body>

I'm using this html5-tidy program to pipe debug output from a web app to display to the console so that as a developer, a debug dump of a string variable containing HTML will not be an awful blob of ...
0
votes
1answer
77 views

How to open a link which was parsed in a div?

My site parses a spanish dictionary and lets you search for more than one word at a time. If you look up "hola" you get the first div). Some words come up with suggestions, like "casa", instead of ...
0
votes
1answer
70 views

iOS html parse issue

I have implemented HTMLParser to my project. I am connecting to billing web site to my cell operator, and I need parse different variables from html content I need get one tag that giving me ...
0
votes
0answers
52 views

How can i select a value from dropdown menu which is found in a double form tag with Python mechanize?

I'm trying to select a value from a second form tag and submitting: <form action="manager.php" method="GET"> ..... <form action="manager.php" method="post">. ====here i need to select a ...
4
votes
1answer
105 views

Parsing simple HTML into tree

I'd like to ask what is the best way to parse a simple html code into DOM Node tree like this one: Here are some constraints I am facing: HTML code will have only pair tags, no attributes and ...
0
votes
2answers
26 views

when parsing html, check if element is present

Im parsing html from some a page, to get a list of the outgoing, i want to split them in two - the ones with the rel="nofollow" / rel="nofollow me" / rel="me nofollow" element and the ones with with ...
-1
votes
1answer
57 views

Building listview from data obtained by parsing a webpage

I am a total newbie to android so my question might sound very immature. I want to make a list view of the table displayed on this page: ...
0
votes
2answers
142 views

How to Render or Convert HTML code to Plain Text generated from wysiwyg editor

I used a wysiwyg editor (CKEditor) in my web application to provide a basic word processor for the user. I tried to save the output of that CKEditor to pdf document. I can now generate pdf document ...
0
votes
1answer
42 views

Parsing with class that's more than one word

I'm trying to parse this table (only part is shown): <table width="100%" cellpadding="0" cellspacing="0" id="row-item-all-0-1" class="my-day-menu-table" style=""> <tr ...
0
votes
0answers
19 views

Importing FBO.gov Dataset - Tried Python (RegEx, BeautifulSoup) and R Studio with no luck

Can anyone point me in the right direction in getting this data pulled in to a database? I don't even understand what format they have it in, but the data is located here: ...
0
votes
0answers
41 views

Parsing Table with Simple HTML Dom Parser

I'm trying to parse this website: (http://www.pomona.edu/administration/dining/menus/frary.aspx), and since Breakfast is in the first column, I'm trying to iterate through the columns. I'm a little ...
0
votes
0answers
85 views

Reading and parsing a file inside HTML using javascript

I have a text files on my desktop which continuously gets updated(new rows gets appended to it) .I am trying to create a code which can read this data continuously (and possibly parse - next step) and ...
0
votes
1answer
59 views

Why does scrapy return two of each item?

Scrapy returns two results for each item I would like to scrape. I could just delete the duplicates later on in the CSV file, but I feel like there is a much more elegant solution that I am not ...
0
votes
0answers
9 views

getting text from a .LST link

I want to get the list of words from the following .LST link: http://www.itasoftware.com/careers/work-at-ita/PuzzleFiles/WORD.LST My idea was to parse out the html source. But when I click view ...
0
votes
2answers
100 views

How to extract this data using Jsoup?

From example I want to grab name1, name2, name3, and name4 from the following HTML code. <td width="200"><a>name1</a></td> <td width="200">name2 </td> <td ...
0
votes
1answer
79 views

How can I extract someting specific using Jsoup?

How can I extract the full names from this sample HTML code? I only want to get the following. Full name1 Full name2 Full name3 <div class="readerP"> ...
3
votes
1answer
90 views

What is a good CPAN parser for HTML MS Excel files?

I know that regular (binary) Excel files can be processed via Spreadsheet::ParseExcel. However, I have a file that is HTML formatted: <html xmlns:x="urn:schemas-microsoft-com:office:excel"> ...
0
votes
2answers
79 views

Parse HTML modified by Javascript

I want to submit a form in WebPage, when i submit my form the web add using Javascript a new fields. I would like to parse this new fields. I was using Mechanize but it is not interpret javascript, I ...
2
votes
3answers
65 views

Parse HTML adding ID to all <input>s using NAME in PHP

I'm trying to take an HTML document in PHP (that I have no control over) and ensuring that each input has an id. If there's no id then I need to add one using whatever name has been set. For ...
-2
votes
1answer
59 views

Parse Company Info

I was wondering if anyone knows how to successfully parse the company name "Alcoa Inc." shown in the URL below. It would be much easier to show a picture but i do not have enough reputation. Any help ...
0
votes
1answer
39 views

what will be the fastest way to split uneven string variable values

I have to split these string values what will be the best algorithm to split it. The string varies as $string=X-1, Sector -12, Dhaka-131301 Landline: +(93)-(220)-5533491, 4390666 Email: ...
2
votes
1answer
145 views

Parse HTML using LXML in Python

I am trying to parse a website for blahblahblah <a href="THIS IS WHAT I WANT" title="NOT THIS">I DONT CARE ABOUT THIS EITHER</a> blahblahblah (there are many of these, and I want ...
0
votes
0answers
64 views

Can't parse value in html table

I'm trying to get the item at the top of the rising table here: http://www.google.com/trends/explore#cat=0-14&date=today%207-d&cmpt=q But nothing I can't seem to get anything and my log keeps ...
-1
votes
1answer
82 views

Parsing google trends - JS object

I'm trying to get the search terms and their values in the rising table here: http://www.google.com/trends/explore#cat=0-14&date=today%207-d&cmpt=q I can't work out what html tag/class/path ...
0
votes
0answers
52 views

Trouble parsing google trends

I'm trying to get the search terms and corresponding values of the rising table on google trends here: http://www.google.com/trends/explore#cat=0-14&date=today%207-d&cmpt=q I'm trying to ...
0
votes
0answers
65 views

Parsing html - unable to get the right XPath expression

I'm trying to parse some html from google trends for iOS. My code seems to be working fine at parsing the html (I'm using hhple - great stuff), the problem I'm getting is that I can't find the right ...
-1
votes
1answer
74 views

Extract Options From Dropdown List Extracted From Website

I've been trying (unsuccessfully) to solve this problem for a few hours and need some help. I used Firebug to extract a couple hundred lines of HTML that look like this: <option ...
0
votes
1answer
134 views

Parse HTML table to database format with PHP

I always had to show a table using the content of a database, but never backwards. One company just published a HTML table with some useful information, however they are not offering a database file, ...
9
votes
1answer
149 views

How can I lazily parse big XHTML file in Clojure?

I have valid XHTML file (100 megabytes of data) with one large table. First tr are columns (for database), all other tr's are data. It is the only table in whole document and it is in structure ...
0
votes
2answers
209 views

Parsing specific texts using Jsoup

I have a cities.txt file placed in my res/raw folder. Inside it contains the following. <div class="state">Alabama</div> <ul><li><a ...
1
vote
2answers
155 views

Parsing a text file using Jsoup

I have a Continent.txt file placed in my res/raw folder. Inside it contains the following. <div class="continents"> <a href="#US">US</a> <a href="#CA">Canada</a> ...

1 2 3 4 5