0
votes
1answer
43 views

How to avoid dojo to parse an element

I have a elemetn in my page. I don't control all javascripts used in this page, and seems that in some place my "select" element is being parsed by dojo and changed to a dijit element ...
1
vote
1answer
70 views

Parsing comments and strings in source code

I'm designing and implementing a scripting language, and for the "reading" stage I'm taking the time-tested and straightforward approach of splitting the code up into tokens (lexical analysis) ...
0
votes
1answer
61 views

parsing custom text tag from html page in JS

i have an HTML page with text tag like that: <div id="container"> [stag id="789"]some content 1[/stag] </div> <span id="somespan"> [stag vn="78988" id="532"]some content 2[/stag] ...
0
votes
1answer
66 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 ...
-1
votes
1answer
47 views

Tag Generating Algorithm [closed]

I'm trying to think of an algorithm that can search through a piece of text looking for keywords for example i have an array of words: Sample=['Andy' 'Murray' 'is' 'expecting' 'a' 'difficult' 'test' ...
0
votes
1answer
55 views

Parsing tags with BeautifulSoup

I am stuck with a python programming problem regarding BeautifulSoup. At first, I needed to create a function that would extract all tags from source page of a webpage. I did this as follows: ...
1
vote
1answer
55 views

Joomla 3 and Simple Image Gallery - doesn't parse {gallery}

I have a problem to make Simple Image Gallery to work in Joomla 3. It doesn't display any pictures, actually it doesn't even care about them. I have this pages: ...
0
votes
0answers
44 views

jQuery Help. Parse data with no ID tags

I'm developing a web page and I would like to parse data from an external data table. I have a button to loop through various user made objects with properties, parse data from web pages and load the ...
2
votes
3answers
187 views

Fix unclosed tags in html or parse with HTML parser for XSLT transformation

I have some HTML code that is the result of an XSLT tranformation. (XML->HTML) I want to run another XSLT transformation on the result HTML. (HTML->HTML) My problem is that the first transformation ...
0
votes
2answers
985 views

Android JSON parsing with a global JSON tag

I am working on an Android project and my json strings are a bit strange, all of the tutorials are showing that I need to parse an JSONArray but my JSON has no array name. Heres an example json url. ...
0
votes
1answer
86 views

Parsing specific rss feed in android

i'm trying to parse rss feed in my android app. and my feed contains a lot of items with tags "tag" it looks like <item> <title> title </title> <link> link </link> ...
0
votes
4answers
84 views

Getting orphaned text out of parent tag with child elements serparating

I have a programming challenge, and I'm wondering what the most bug-free way to approach it is. Basically, I have the following HMTL: <p id="first"> Hello lorem ispum <a id="link" ...
0
votes
5answers
173 views

Perl - How do i count some tag inside a XML file which contains several xml start and end tags

I have an XML file like this. Each line of the file starts and ends with a process_info tag. The file can contain many lines like this, there may be many similar files. ...
0
votes
3answers
990 views

PHP parse HTML tags [duplicate]

Possible Duplicate: How to parse and process HTML with PHP? I'm pretty new to PHP. I have the text of a body tag of some page in a string variable. I'd like to know if it contains some tag ...
0
votes
1answer
78 views

Removing images from Android Webview?

I have an Android Webview where I load HTML into using loadDataWithBaseURL, some of my images are displayed a "?" as if the image is missing. I had trouble fixing that so I'm now attempting to remove ...
1
vote
0answers
144 views

Parsing Through HTML tags in Objective C ( XCode )

I'm trying to get string from the following html code <tr class="details"> <td> 07/11/2012 09:30 </td> <td> something </td> ...
0
votes
1answer
68 views

Youtube feed api json not give tags :(

I want parse these tags. Earlier, a few months ago, he gave me a tags, but now will not be. My query looks like: https://gdata.youtube.com/feeds/api/videos?author=MYAYTHOR&v=2&alt=jsonc
0
votes
1answer
47 views

How do I get text inside the xml tag

I got a xml document that looks like this: <recenttracks user="xxxxxx" page="1" perPage="200" totalPages="2" total="233"> <track> <artist ...
-1
votes
1answer
95 views

Parsing html to retrieve tags [duplicate]

Possible Duplicate: Count all HTML tags in page PHP How to parse and process HTML with PHP? I am having trouble with parsing information to retrieve a list of html and meta tags used in a ...
0
votes
1answer
204 views

Parsing XML File from res on Android

I am trying to parse an XML file that I have defined inside a folder named raw which itself is contained inside the res folder of my android application. I have essentially used the version from the ...
1
vote
3answers
106 views

get data between inverted commas and more

i have aproblem for a few days right now :s ... I'm trying to get some changing data inside a string, the string is something like this: <docdata> <!-- News Identifier --> ...
0
votes
3answers
109 views

PHP: How to find text NOT between particular tags?

Example input string: "[A][B][C]test1[/B][/C][/A] [A][B]test2[/B][/A] test3" I need to find out what parts of text are NOT between the A, B and C tags. So, for example, in the above string it's ...
0
votes
2answers
1k views

Error parsing XML mismatched tag

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" ...
0
votes
2answers
151 views

Parsing strings for ints both Positive and Negative, Javascript

So I am working through a tag cloud example made in d3. http://www.jasondavies.com/wordcloud/#http%3A%2F%2Fsearch.twitter.com%2Fsearch.json%3Frpp%3D100%26q%3D%7Bword%7D=cloud and am trying to ...
0
votes
1answer
158 views

php get images only within body tags

I need to do the equivalent of this: $tags2 = $doc->getElementsByTagName('img'); $mybody = $doc->getElementsByTagName('body'); //if there's a body tag foreach ($mybody as $bod){ ...
0
votes
1answer
84 views

remove lex tag block from string

Hello i have this lex parser template which contains a callback tag which i want to be removed because i get an infinite loop. I tried with php preg_replace but then i get a white screen. The tag ...
0
votes
2answers
464 views

Pull Tag Value using BeautifulSoup

Can someone direct me as how to pull the value of a tag using BeautifulSoup? I read the documentation but had a hard time navigating through it. For example, if I had: <span title="Funstuff" ...
0
votes
0answers
57 views

Select on a HTML page the contains of two tags

This is my need. I have an html code like this : <html> <tag1>Title1</tag1> <tag2>Value</tag2> <tag3>Dont care</tag3> <tag1>Title2</tag1> ...
0
votes
2answers
61 views

JQuery: Way to add HTML code to a div?

So I have this code if ($(this).is(".item")) { $("#hoverdiv").text("This div has the Item class<br>Test").show(); } and I have found out the hard way that using .text won't make HTML ...
0
votes
2answers
782 views

How to remove html tags from a parsed text on iOS?

I am parsing a text and store it in a NSString variable. However when I try to display the NSString on screen I can see, within the text, the html tags like: <br>. How can I remove this tags ...
0
votes
0answers
118 views

How to parse from string with tag in it tag name and its arguments in Qt?

Say we have a QString with next contents: <tag attr1="string" attr2=34 /> how to make Qt parse this tag as usual xml (not using QtWebKit) tag say having sring object get tag name, value string ...
0
votes
0answers
56 views

Processing data from another file on drive using Javascript

I am new to Javascript and this is probably really simple, but please bear with me. I have a file on my drive that I would like to parse using Javascript. All the examples I have seen of parsing seem ...
0
votes
1answer
2k views

PHP Simple HTML DOM Parser: How to remove <font> tags from script output?

I'm using PHP Simple HTML DOM Parser to extract a list of URLs from a page as follows: <?php include('simple_html_dom.php'); $url = 'http://www.domain.com/'; $html = file_get_html($url); ...
0
votes
2answers
46 views

How to limit jQuery searches to a certain area

Let's say I have the following. <div class="foo"> <div> some text <div class="bar"> </div> </div> </div> <div class="foo"> <div> some text <div ...
0
votes
2answers
35 views

Retrieve attributes from plain written text

Lets say we have this text The 85 kilos guy rant 10 miles and then we can se he is simply dummy text of the printing and typesetting industry and all of this in 2 hours And we want to capture: ...
1
vote
4answers
365 views

List HTML tags from a String

I have a String and from which I want to list all the HTML tags present within it. Is there any library available to do this job? Any information will be very helpful to me.
1
vote
1answer
122 views

jaxb, skip some input tags retaining them in output

how can I skip some tags? I have an xml in input with some tags I'm not interested to modify, but I want to modify only some inner tags (a Java object). The "useless" tags must be untouched. For ...
0
votes
1answer
74 views

API that can classify an url

I'm looking for an API that: When given an url, returns tags, structured data, or a microformat describing the page. Example1: input:http://lady-gaga.net/ output:<news><person name="Lady ...
1
vote
1answer
208 views

How can I read attributes of a self closing tag using SimpleXML (PHP)

I have a XML file containing, among other tags, some self closing tags. <tagname attr1="foo1" attr2="foo2" /> I use PHP's simplexml to load the XML file into a object. So far so good. The ...
0
votes
1answer
55 views

Is there a way to tell what kind of tag I hit when parsing XML in Android?

Looking at this website for the correct tag taxonomy: http://www.tizag.com/xmlTutorial/xmltag.php Is it possible to tell if I'm grabbing attributes from tag pair vs a solo tag? If it helps I'm ...
1
vote
1answer
1k views

How do I use the java library “HTML Parser” to remove all <style> tags?

I need to perform several action on a html file such as removing a specific tag or delete attributes. I decided to use HTML Parser, a java library: http://htmlparser.sourceforge.net/ First of all, I ...
3
votes
3answers
238 views

PHP - Parsing pure text in an HTML string

I have an HTML string and I'd like to make some text formatting on its pure text content. I mean, I'd like to extract anything that is a text and not included into the tag braces. But... I've planned ...
4
votes
1answer
371 views

How can I only get the alt attribute of the a p tag in PHP?

I'm working on a script that echo's only the price. If I do: $alttag = $oNode['p']; echo $alttag; It will echo everything in <p></p>. So it will echo: roodmerk of cafeïnevrij pak 500 ...
1
vote
3answers
114 views

perl parse misformatted bracketed text

I have a string of text chunked into phrases, with each phrase surrounded by square brackets: [pX textX/labelX] [pY textY/labelY] [pZ textZ/labelZ] [textA/labelA] Sometimes a chunk does not start ...
0
votes
3answers
92 views

parse annotated file

I'm trying to parse a file that contains annotation of person names in the form <name> James Gold </name> said to meet with <name> Mable Helen </name> tomorrow night I'm ...
2
votes
2answers
2k views

PHP DOMDocument / XPath: Get HTML-text and surrounded tags

I am looking for this functionality: Given is this html-Page: <body> <h1>Hello, <b>world!</b> </h1> </body> I want to get an array that only contains the ...
1
vote
2answers
946 views

Parsing specific HTML tags in Javascript

I'm looking for the Javascript to parse the following HTML: <p>random text random text random text random text</p> <kbd><h2>Heading One</h2>Body text Body text Body text ...
0
votes
1answer
89 views

How to Parse a Glossary Section of a Website with BeautifulSoup & strip HTML tags

I'm trying to Parse this page http://www.lib.uts.edu.au/about-uts-library/corporate-information/library-glossary and get just the Title, Description for each section and that's it, no tags. I ...
1
vote
2answers
403 views

Parsing a text file with a special markup

I need to parse a DSL file using Python. A DSL file is a text file with a text having a special markup with tags used by ABBYY Lingvo. It looks like: activate [m0][b]ac·ti·vate[/b] ...
0
votes
1answer
32 views

tag in tag empty on .net xml parsing

I'm parsing the xml on my job. I can't change xml creator file untill our other IT group come from holiday. Here is xml file to parse <workhours> <name>x</name> ...

1 2