3
votes
3answers
48 views

Parse XML into DOM tree with custom object implementations in Java

I want to parse an XML document into a DOM tree in Java such that certain objects (e.g. instances of org.w3c.dom.Node or org.w3c.dom.Element) in the tree can be downcast to instances of classes that I ...
0
votes
2answers
35 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 ...
-4
votes
0answers
42 views

Помогите с Php dom simle parser [closed]

In general there is a site I do parsing as follows: foreach ($ html-> find ('div [id = content]') as $ element) echo $ element-> innertext. ' '; I still parsed, but the problem is that the ...
0
votes
0answers
16 views

How to add attribute to anchor element using PHP Simple HTML DOM Parser

Need to add target="_blank" to all anchor tags in page that is parsed. I use the following to change the relative href attribute to absolute; foreach ($html->find('a[href]') as $a) { $href = ...
0
votes
0answers
9 views

Find first link after match - php simple DOM parser

I want to find first URL after determinated string in paragraph is found. $soldOut = $html->find('div.sold-out p'); if(strpos($soldOut[0], 'SOLD OUT') !== false){ // FIND FIRST URL AFTER ...
0
votes
1answer
26 views

PHP Simple Dom Parser Blank Array

I'm trying to use the Simple Dom Parser to extract a piece of html from Yahoo Sports.. <?php include('simple_html_dom.php'); $html = file_get_html('http://sports.yahoo.com/mlb/players/5763'); ...
-4
votes
1answer
31 views

Get each url in array as a variable [closed]

This gets urls from bing and puts them in an array. I'm confused on how to get each individual url in a different variable though, anyone help? <?php function searchBing($search_term) { ...
0
votes
1answer
48 views

Why my DOM parser cant read UTF-8

I have problem that my DOM parser can´t load file when there are UTF-8 characters in XML file Now, i am aware that i have to give him instruction to read utf-8, but i don´t know how to put it in my ...
0
votes
2answers
59 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
47 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
0answers
71 views

PHP Simple HTML DOM Parser - Find a specific URL

There are several URL's in the page that include $id in them. The one I need does not have any special tags, just a long URL that I can't seem to get because of special characters. I'm using a ...
-1
votes
3answers
56 views

How to re arrange child elements in an XML file using Java

I have an xml file and I am looking to re position the child elements based on certain attributes ( value if "id" in the example below). I am looking to rewrite the xml file in a way that "bk103" ...
0
votes
1answer
52 views

simple html dom php curl error cannot grab text i need

i am using the following code in my cript to grab a part of source code i need but it get this error Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting ')' in ...
-2
votes
1answer
77 views

simple html dom parser to get class id [closed]

i am trying to use simple html dom parser to get this following data <input type=submit value="Change Password" class="button"> i would like it to get the value Change password and issue ...
0
votes
2answers
44 views

Parsing XML DOM in Android

I am doing my own Android application and I am getting troubling. My app read and write a XML file. I have this code to open the XML file from the SDCard: public void abrirSD() { try{ ...
0
votes
2answers
42 views

Dom parsing issue empty result

<tr class='Jed01'> <td height='20' class='JEDResult'>1</td> <td height='30' class='JEDResult'>26.04.2013</td> <td height='30' class='JEDResult'>19:43</td> ...
0
votes
1answer
24 views

Java DOM unable to recognize CDATA

I have an XML with CDATA in it. Here is the XML I am trying to load into Java DOM. <?xml version="1.0" encoding="utf-8"?><search:Search xmlns:search="Search"><search:Response ...
0
votes
1answer
55 views

Java DOM parser error

Here is my xml file: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE Server SYSTEM "Server.dtd"> <Server> <MaximumUserNumber>2</MaximumUserNumber> ...
0
votes
1answer
63 views

HTML convert text into a link

I have this html code: <h2>A</h2> <span> <p>Compare BookA. 12:2; BookB. 41:4; 44:6; BookC. 1:11,17; 2:8.</p> </span> And this JavaScript: <script ...
0
votes
2answers
297 views

Find div with class using PHP Simple HTML DOM Parser

I am just starting with the mentioned Parser and somehow running on problems directly with the beginning. Referring to this tutorial: ...
-1
votes
1answer
35 views

how to parse through links with specific words only [closed]

I need a PHP script that will parse through links on a specified webpage and echo only the ones that contain a specific set of words. Does anyone know of any tutorials that would be helpful or have ...
0
votes
1answer
64 views

Simple HTML parsing with Android?

I have a simple web page I want to scrape with an Android app. Patterns and Regex are obviously out so wondering about a recommendation? SAX, DOM or Jsoup? The HTML I'm working with is only 16K of ...
0
votes
1answer
76 views

HTML Parsing - Convert a Text into a Link [closed]

Supposed that I have this text: Aaron was implicated in the sin of his brother at Meribah (Num. 20:8-13), and on that account was not permitted to enter the Promised Land. When the tribes arrived ...
-8
votes
1answer
69 views

Wrap markup groups in a div with a sequentially numbered class [closed]

Here is a HTML code: <div class="album"><b>Album1</b> (1997)</div> <a href="song11.html" target="_blank">song11</a><br /> <a href="song12.html" ...
-4
votes
1answer
37 views

Java Xml Dom Url Parsing Issue [closed]

i coded this but it doesnt work: URL url = new URL("http://www.tcmb.gov.tr/kurlar/today.xml"); Document doc = builder.parse(url.openStream()); what is wrong?
0
votes
0answers
20 views

Parsing with PHP DOM

Hope someone can help me with this. I am new to parsing and I would like to know how to pull data from an external website, specifically articles and after clicking on the link to that article, it ...
0
votes
0answers
48 views

How can make a javascript source to DOM in java

I have some html files include javascripts. and I want to convert all html files' javascript source to another expression. like function name, expression formula, variables name, etc... So, is ...
0
votes
1answer
50 views

how to use parse xml android

All I want to do is simply read one line out of an XML file. I cant seem to get anything but null. I want to just read the session id right out of the document without creating massive amounts of ...
0
votes
1answer
77 views

Android w3c DOM Parsing very slow

I'm having some real issues with the parsing within my android app. I'm pulling down a few XML files with a DOM style parser and it's taking almost 20 seconds to do it and run some code on them, the ...
0
votes
0answers
39 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
2answers
74 views

PHP Dom Parser to get span value [closed]

I'm looking to gather information from an external URL, and strip it to just the value. For example <span id="ctl00_cphRoblox_rbxUserStatisticsPane_lFriendsStatistics">149</span> I ...
1
vote
1answer
122 views

Parsing CDATA from Javascript

This is my first post and I'm sorry if I'm doing it wrong but here we go: I've been working on a project that should scrape values from a website. The values are variables in a javascript array. I'm ...
3
votes
1answer
163 views

how to parse this XML using DOM and put its content in a hashtable?

I want two hash tables out of the following XML. The first one being (screen id,widget id) and the second one being (widget id,string id). I have been able to parse this XML using DOM but putting its ...
0
votes
1answer
22 views

Retrieve Specific Text using Simple HTML DOM Parser

Taking an example of following <div id="XYZ"> <div id ="abc"></div> Text 1 <div id="efg"> Text 2 </div> Text 3 </div> How do I retrieve Text 1 and ...
3
votes
3answers
58 views

XML Parsing - Missing nodes

I am running into the issue that some nodes of my xml file are parsed & displayed correctly while others aren't detected (at least I don't know what's going wrong here) Rather than posting the ...
0
votes
1answer
101 views

PHP Simple HTML DOM parser - print class name

I have little problem with parsing some data from one webpage. I'm trying to get class name of certain div. Example: < div class="stars b3"></div> I want to save in array just b3. ...
0
votes
1answer
87 views

Where I can find the T-SQL Dom generated by the SQL Server ScriptDom parser?

I'm playing with the Microsoft.SqlServer.TransactSql.ScriptDom library. I found the way to navigate all the tokens I can get from a TSqlFragment: TSql100Parser parser = new TSql100Parser(false); ...
1
vote
1answer
190 views

How to get href value from XML file on java eclipse DOM

I have an XML file in the format: <?xml version="1.0"?> <company> <tr> <td align="center" style="width:50px;">9850</td> <td align="center" ...
1
vote
0answers
137 views

Parse Imagelink in Cdata description tag Dom parsing

I want to retrieve the image link inside the description tag, my tags are all working, here is the sample of description tag: [http://news.instaforex.com/analytics/rss][1] I want to retrieve the ...
1
vote
2answers
55 views

Find and separate the HTML blocks to an array

First of all I want to describe the idea - anyone know that any CMS or a simple website has some kind of blocks like the list of articles for example on the main page of wordpress where shown each in ...
0
votes
0answers
67 views

dom parsing notifyDataSetChanged();

guys please help me out on this i dont know where to put the method notifyDataSetChanged(); on my code, i want to automacally refresh my listview when there is new data from rss feed. i tried to put ...
0
votes
2answers
61 views

How to parse HTML “BLOCKS” to a table layout for every not empty tag?

Updated: (things are more complicated including blocks, which I didn't explain from the start, but I understand that this should work with regex or something) How to parse HTML blocks to a table ...
0
votes
2answers
140 views

HTML string parsing using dom

<html> <head> <?PHP include('simple_html_dom.php'); ?> <title> </title> </head> <body> <form name ="form1" method ="POST" ACTION="parser.php"> ...
0
votes
0answers
95 views

defer vs async vs scripts at the bottom [closed]

Defer vs async vs scripts at the bottom Im looking for others results on these which is best? we have the async that let the parser go on until the script has been downloaded and then load in the ...
1
vote
1answer
50 views

How to modify Dijit templated widget dom structure when it is parsed?

I'm creating a Dijit templated custom widget defined in a Html like this: <div data-dojo-type="widgets/Test">Bla bla bla</div> This is replaced with a template. For purpose of this ...
0
votes
2answers
113 views

How to parse the XML using DOM parser

how to parser the following XML using DOM PARSER <Result> <Status>OK</Status> <All_BookDetails> <BookAuthor>Mohammadi Reyshahri</BookAuthor> ...
0
votes
1answer
147 views

How to remove <p/> <p> <br/> <br> in my parse data Dom Parsing

hello guys I am having problems with my parse data it seems that this extra letters are also being parse i want them remove how to do this in my code, i will post below. here is my xmlparser.java ...
2
votes
3answers
63 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 ...
0
votes
1answer
91 views

simple html php dom parser a way to gather information from all pages?

I wanted to know if its possible to make this code search every page from that website so it pulls every image src from all pages. Currently it will only pull the image src from that one page. I tried ...
1
vote
4answers
2k views

How to extract title and meta description using PHP Simple HTML DOM Parser?

How can I extract a page's title and meta description using the PHP Simple HTML DOM Parser? I just need the title of the page and the keywords in plain text.

1 2 3 4 5 8