active questions tagged parse - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T22:17:04Z http://stackoverflow.com/feeds/tag/parse http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1921660/what-is-the-processes-to-parse-an-interpreted-programming-language 0 What is the processes to parse an interpreted programming language? M28 2009-12-17T13:04:28Z 2009-12-17T13:50:21Z <p>I would like to know how is the best way to create the syntax tree.</p> http://stackoverflow.com/questions/1917291/how-to-query-full-page-from-a-phpbb-forum 0 How to query full page from a phpbb forum? Joan Venge 2009-12-16T20:03:36Z 2009-12-16T21:29:41Z <p>I want to write an app that parse particular threas on a phpbb forum. So if a thread has 200 pages with 10 posts (that doesn't give you the ability to adjust the post count per page), and has an address like this:</p> <pre><code>http://www.forum.com/viewtopic.php?t=10&amp;postdays=0&amp;postorder=asc&amp;start=0 </code></pre> <p>where start parameter changes when you navigate to the next pages of the same thread, how do you get the full thread in one go?</p> <p>I tried:</p> <pre><code>http://www.forum.com/viewtopic.php?t=10&amp;postdays=0&amp;postorder=asc&amp;start=0&amp;end=2000 </code></pre> <p>but didn't work.</p> <p>Surely there must be a way to do this I imagine.</p> http://stackoverflow.com/questions/1913143/how-to-convert-english-to-cron 4 How to Convert English to Cron? Tom Duckering 2009-12-16T08:25:34Z 2009-12-16T08:54:47Z <p>I did some searching but haven't landed anything that looks useful yet but I am wondering if anyone knows of something (tool,lib etc) that can parse English phrases and translate them into a cron string.</p> <p>For example: <code>Every Tuesday at 15:00</code> converts to <code>0 15 * * 2</code></p> <p>It seems like something that would have lots of gotchas and it would be preferable to benefit from someone elses work. You see it in a few nice sites/apps that can work out what you mean from a simple phrase rather than having some hideous user interface.</p> <p>Thanks, Tom</p> http://stackoverflow.com/questions/1905105/loading-an-hpricot-element-with-a-chunk-of-html 0 Loading an hpricot element with a chunk of html cgr 2009-12-15T04:10:14Z 2009-12-15T17:50:26Z <p>is there a way to load a chunk of html into an Hpricot::Doc object?</p> <p>I am trying to parse various chunks of html within custom tags from a page.</p> <p>so if I have:</p> <pre><code>&lt;foo&gt; &lt;b&gt;here is some stuff&lt;/b&gt; &lt;table&gt; &lt;tr&gt; &lt;td&gt;one&lt;/td&gt; &lt;td&gt;two&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;three&lt;/td&gt; &lt;td&gt;&lt;four&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/foo&gt; </code></pre> <p>I would love to be able to get foo and it's contents within an Hpricot::Doc object because I am going to need to do some additional processing and eventually swap() it so that foo and all its children are replaced in the document.</p> <p>I know I can iterate by the children of foo, but I was hoping there was a way to grab it all in one chunk to keep things clean. Also, may or may not have attributes. There will be many items, each with a chunk of HTML, but no foo item will contain another foo item.</p> <p>Is this at all possible? Lastly, I started with Hpricot, but I am open to Nokogiri if it would make a difference.</p> http://stackoverflow.com/questions/1907040/how-to-allow-a-user-to-upload-a-spreadsheet-in-asp-net-mvc 0 how to allow a user to upload a spreadsheet in asp.net mvc oo 2009-12-15T12:16:24Z 2009-12-15T12:20:19Z <p>i want a user to have file picker and then choose a spreadsheet which will then be parsed by a controller action. are there any examples of how to do this?</p> http://stackoverflow.com/questions/1903252/extract-integer-part-in-string 2 Extract Integer Part in String vigilant 2009-12-14T20:23:21Z 2009-12-15T11:44:12Z <p>What is the best way to extract the integer part of a string like</p> <pre><code>Hello123 </code></pre> <p>How do you get the 123 part. You can sort of hack it using Java's Scanner, is there a better way?</p> http://stackoverflow.com/questions/1903214/pulling-webpages-from-an-adult-site-how-to-get-past-the-site-agreement 1 pulling webpages from an adult site -- how to get past the site agreement? grautur 2009-12-14T20:17:40Z 2009-12-14T20:37:34Z <p>I'm trying to parse a bunch of webpages from an adult website using Ruby:</p> <pre> require 'hpricot' require 'open-uri' doc = Hpricot(open('random page on an adult website')) </pre> <p>However, what I end up getting instead is that initial 'Site Agreement' page making sure that you're 18+, etc.</p> <p>How do I get past the Site Agreement and pull the webpages I want? (If there's a way to do it, any language is fine.)</p> http://stackoverflow.com/questions/1900160/losing-whitespace-around-escaped-symbols-in-cdata-using-expat-xml-parser-in-c 2 Losing whitespace around escaped symbols in CDATA using Expat XML parser in C++ TheWalruss 2009-12-14T10:40:22Z 2009-12-14T11:35:20Z <p>I'm using XML to send project information between applications. One of the pieces of information is the project description. So I have:</p> <pre><code>&lt;ProjectDescription&gt;Test &amp;amp; spaces around&amp;amp;some &amp;amp; amps!&lt;/ProjectDescription&gt; </code></pre> <p>Or: "Test &amp; spaces around&amp;some &amp; amps!" &lt;-- GOOD!</p> <p>When I then use Expat to parse it, my data handler gets just parts of the entire string at a time. "Test", then "&amp;", then "spaces around", the next "&amp;", etc, etc. When I then try to reconstruct the original string, all the spacing around the &amp;'s is dropped because the data handler never gets to see them. When I then re-write the XML I get:</p> <pre><code>&lt;ProjectDescription&gt;Test&amp;amp;spaces around&amp;amp;some&amp;amp;amps!&lt;/ProjectDescription&gt; </code></pre> <p>Or: "Test&amp;spaces around&amp;some&amp;amps!" &lt;-- BAD!</p> <p>Is this a known problem with existing workarounds? Is there some setting I can give Expat to control its behavior around escaped symbols? </p> <p>My attempts at Googling an answer have met with dismal failure.</p> <p>EDIT: In response to a question in the comments: I have my own handler, which I register with the parser: </p> <pre><code>parser=XML_ParserCreate(NULL); XML_SetUserData(parser,&amp;depth); XML_SetElementHandler(parser,startElement,endElement); XML_SetCharacterDataHandler(parser,dataHandler); </code></pre> <p>The handler is declared as follows: </p> <pre><code>static void dataHandler(void *userData,const XML_Char *s,int l) </code></pre> <p>And then "s" contains the data in the element. Without any &amp; stuff, it's the entire string between the open and close tags, in the case of "a string with spaces".</p> http://stackoverflow.com/questions/1894711/how-to-filter-data-from-a-file-using-python 0 How to filter data from a file using Python? roaksoax 2009-12-12T21:11:13Z 2009-12-13T06:06:45Z <p>Hi all, I'm trying to filter certain data from an HTML file. For example, the HTML file is as follows:</p> <pre><code>&lt;tr&gt;&lt;td valign="top"&gt;&lt;img src="/icons/unknown.gif" alt="[ ]"&gt;software_0.1-0.log&lt;/td&gt;&lt;td align="right"&gt;17-Nov-2009 13:46 &lt;/td&gt;&lt;td align="right"&gt;186K&lt;/td&gt;&lt;/tr&gt; </code></pre> <p>I need to extract the software_0.1-0 part as well as the 17-Nov-2009 part. How can I do this? </p> <p>Thanks a lot.</p> http://stackoverflow.com/questions/1145015/xml-parsing-expat-in-python-handling-data 0 XML parsing expat in python handling data pythonicate 2009-07-17T18:44:04Z 2009-12-12T23:00:02Z <p>I am attempting to parse an XML file using python expat. I have the following line in my XML file:</p> <pre><code>&lt;Action&gt;&amp;lt;fail/&amp;gt;&lt;/Action&gt; </code></pre> <p>expat identifies the start and end tags but converts the &amp; lt; to the less than character and the same for the greater than character and thus parses it like this:</p> <p>outcome:</p> <pre><code>START 'Action' DATA '&lt;' DATA 'fail/' DATA '&gt;' END 'Action' </code></pre> <p>instead of the desired:</p> <pre><code>START 'Action' DATA '&amp;lt;fail/&amp;gt;' END 'Action' </code></pre> <p>I would like to have the desired outcome, how do I prevent expat from messing up?</p> http://stackoverflow.com/questions/1894498/xml-parsing-in-vb-net 0 xml parsing in vb.net MaQleod 2009-12-12T19:50:30Z 2009-12-12T20:19:25Z <p>I have an xml formatted document that looks like this:</p> <pre><code> &lt;?xml version="1.0" encoding="windows-1250"?&gt; &lt; Recipe&gt; &lt; Entry name="Stuffed Red Cabbage" ethnicity="Slavic" /&gt; &lt; Cook_Time Hrs="1" Mins="30" /&gt; &lt; Ingredients&gt; &lt; Cabbage Amount="1" Measurement="head" /&gt; &lt; Egg Amount="1" Measurement="unit" /&gt; &lt; Ground_Beef Amount="1" Measurement="lb" /&gt; &lt; Margarine Amount="1/2" Measurement="cup" /&gt; &lt; Onion Amount="1" Measurement="unit" /&gt; &lt; Rice Amount="1" Measurement="cup" /&gt; &lt; Tomato_Soup Amount="3" Measurement="cans" /&gt; &lt; /Ingredients&gt; &lt; Description&gt;core cabbage and boil until leaves start pulling away. Strip leaves and let cool. chop onion and place in frying pan with margarine and heat till lightly browned. put ground beef, rice, onion, egg and salt to taste in bowl and mix. stuff each leaf with mixture. put tomato soup and stuffed leaves in pot and cook for about an hour.&lt;/Description&gt; &lt;/Recipe&gt; </code></pre> <p>and I have code that so far looks like this:</p> <pre><code>OpenFileDialog1.Filter = "RecipeBook files (*.rcp)|*.rcp" If OpenFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then Try Dim settings As New XmlReaderSettings() settings.IgnoreComments = True Dim RecipeCard As String = OpenFileDialog1.FileName Dim xmlreader As XmlTextReader xmlreader = New XmlTextReader(RecipeCard) Do While xmlreader.Read 'needs to read xml and write appropriate items to database and listview xmlreader.MoveToContent() If xmlreader.Name.Equals("Entry") Then MessageBox.Show(xmlreader.GetAttribute("name") &amp; " " &amp; xmlreader.GetAttribute("ethnicity"), "test") End If If xmlreader.Name.Equals("Cook_Time") Then MessageBox.Show(xmlreader.GetAttribute("Hrs") &amp; " hrs " &amp; xmlreader.GetAttribute("Mins") &amp; " mins", "test") End If If xmlreader.Name.Equals("Ingredients") Then End If Loop Catch End Try End If </code></pre> <p>My question has to do with parsing the Ingredients section. I was planning on doing something like this:</p> <pre><code>Dim IngredientCount As Integer = 0 Dim count As Integer = (something here that gets the count of subelements inside the Ingredients element) For i = 1 To count MessageBox.Show(xmlreader.GetAttribute("Amount") &amp; " " &amp; xmlreader.GetAttribute("Measurement"), "test") Next </code></pre> <p>I just can't figure out how to get the number of subelements and then how to refer to each one in succession to get the name and then the attributes of that subelement. Any suggestions would be greatly appreciated.</p> http://stackoverflow.com/questions/1884094/html-agility-pack 1 HTML Agility Pack baeltazor 2009-12-10T21:18:38Z 2009-12-11T13:00:03Z <p>Hi All</p> <p>I'm trying to use HTML Agility Pack to get the description text from inside the:</p> <pre><code>&lt;meta name="description" content="**this is the text i want to extract and store in a string**" /&gt; </code></pre> <p>And someone on Stackoverflow a little while ago suggested I use HTMLAgilityPack. But I don't know how to use it, and the documentation for it that I've found (including the docs contained in the downloads) all have invalid links and therefor cannot view the documentation.</p> <p>Can somebody please help me solve this?</p> http://stackoverflow.com/questions/1875258/regular-expression-to-parse-links-from-html-code 2 regular expression to parse links from html code Crash893 2009-12-09T16:55:25Z 2009-12-10T18:48:41Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1496619/regex-to-get-the-link-in-href-asp-net">Regex to get the link in href. [asp.net]</a> </p> </blockquote> <p>I'm working on a method that accepts a string (html code) and returns an array that contains all the links contained with in.</p> <p>I've seen a few options for things like html ability pack but It seems a little more complicated than this project calls for</p> <p>I'm also interested in using regular expression because i don't have much experience with it in general and i think this would be a good learning opportunity.</p> <p>My code thus far is</p> <pre><code> WebClient client = new WebClient(); string htmlCode = client.DownloadString(p); Regex exp = new Regex(@"http://(www\.)?([^\.]+)\.com", RegexOptions.IgnoreCase); string[] test = exp.Split(htmlCode); </code></pre> <p>but I'm not getting the results I want because I'm still working on the regular expression </p> <p>sudo code for what I'm looking for is "</p> http://stackoverflow.com/questions/1879756/c-parsing-text-from-html 1 c# : parsing text from html Pygmy 2009-12-10T09:22:13Z 2009-12-10T10:07:50Z <p>I have an string input-buffer that contains html. That html contains a lot of text, including some stuff I want to parse. What I'm actually looking for are the lines like this : "&lt; strong>Filename&lt; /strong>: yadayada.thisandthat.doc&lt; /p>"</p> <p>(Although position and amount of whitespace / semicolons is variable)</p> <p>What's the best way to get all the filenames into a List&lt; string> ?</p> http://stackoverflow.com/questions/1876925/parse-shred-huge-complex-xml-to-sql-server-2008-database-30-tables 1 Parse/Shred Huge Complex XML to SQL Server 2008 Database (30+ tables) NealWalters 2009-12-09T21:14:14Z 2009-12-09T23:09:22Z <p>I read this already: <a href="http://stackoverflow.com/questions/61233/the-best-way-to-shred-xml-data-into-sql-server-database-columns">http://stackoverflow.com/questions/61233/the-best-way-to-shred-xml-data-into-sql-server-database-columns</a> and <a href="http://stackoverflow.com/questions/223376/looking-for-a-good-bulk-insert-xml-shredding-example-for-sql-2005">http://stackoverflow.com/questions/223376/looking-for-a-good-bulk-insert-xml-shredding-example-for-sql-2005</a>. </p> <p>The differences of why I'm posting is that I'm using BizTalk 2009 and SQL 2008. </p> <p>I'm receiving a huge XML structure from a vendor using BizTalk. The client has normalized the XML structure into about 30 tables on a MS/SQL Server 2008 database. </p> <p>Is there any magic solution yet? </p> <p>Seems like to me these are the options: </p> <p>1) BizTalk SQL adapter only good for simple flat databases (not a lot of joins and one-to-many relationships). </p> <p>2) Write a WCF program a) use LINQ and expose the LINQ object b) use traditional XML DOM or SAX parsing and build ADO.NET to store in database </p> <p>3) Write a complex Stored Proc that uses Open/XML. </p> <p>4) Store the database temporarily in an SQL/XML Column, then use some other tool to "shred and normalize" the data. Is there anything in SSIS that would do this? </p> <p>5) Leave the data in an XML column, and use XML indices and never normalize it. Embed the ugly XQuery/Xpath statements in a view. Not sure if response time or queries would be adequate. Might take as long to generate the xqueries and views as it would to do one of the other steps above. </p> <p>I'm guessing that #2 or #3 would take at least one or two hours per table, thus if we have 30 tables, at least 30 (if not 60 hours) of various tedious boring and error-prone work. </p> <p>Thanks,</p> <p>Neal Walters </p> http://stackoverflow.com/questions/1870589/net-datetime-parse 1 .NET DateTime.Parse Matthew 2009-12-08T23:21:40Z 2009-12-08T23:33:43Z <p>When trying to use the Parse method on the DateTime class I get an exception thrown:</p> <blockquote> <p>String was not recognized as a valid DateTime.</p> </blockquote> <ul> <li>The string reads as <code>"26/10/2009 8:47:39 AM"</code> when outputted.</li> <li>This string is obtained from a group on a match from a regex.</li> <li>None of the strings obtained from this match group will parse to datetime. (WTF?)</li> </ul> <p>Examples of other strings:</p> <pre> 26/10/2009 8:47:39 AM 26/10/2009 8:00:41 AM 26/10/2009 7:48:35 AM </pre> <p>The weird thing is, I am sure it has worked before <code>&gt;__&lt;</code></p> http://stackoverflow.com/questions/1867550/how-to-parse-time-stamps-with-unicode-characters-in-java 0 How to parse time stamps with Unicode characters in Java? ram 2009-12-08T15:03:48Z 2009-12-08T16:28:56Z <p>I'm trying to make my code as generic as possible. I'm trying to parse install time of a product installation. I will have two files in the product, one that has time stamp I need to parse and other file tells the language of the installation.</p> <p>This is how I'm parsing the timestamp</p> <pre><code>public class ts { public static void main (String[] args){ String installTime = "2009/11/26 \u4e0b\u5348 04:40:54"; //This timestamp I got from the first file. Those unicode charecters are some Chinese charecters...AM/PM I guess //Locale = new Locale();//don't set the language yet SimpleDateFormat df = (SimpleDateFormat)DateFormat.getDateTimeInstance(DateFormat.DEFAULT,DateFormat.DEFAULT); Date instTime = null; try { instTime = df.parse(installTime); } catch (ParseException e) { // TODO Auto-generated catch block e.printStackTrace(); } System.out.println(instTime.toString()); } } </code></pre> <p>The output I get is </p> <pre><code> Parsing Failed java.text.ParseException: Unparseable date: "2009/11/26 \u4e0b\u5348 04:40:54" at java.text.DateFormat.parse(Unknown Source) at ts.main(ts.java:39) Exception in thread "main" java.lang.NullPointerException at ts.main(ts.java:45) </code></pre> <p>It throws exception and at the end when I print it, it shows some proper date... wrong though. I would really appreciate if you could clarify me on these doubts</p> <ol> <li><p>How to parse timestamps that have unicode characters if this is not the proper way?</p></li> <li><p>If parsing is failed, how could instTime able to hold some date, wrong though? I know its some chinese,Korean time stamps so I set the locale to zh and ko as follows.. even then same error comes again</p> <p>Locale = new Locale("ko");</p> <p>Locale = new Locale("ja");</p> <p>Locale = new Locale("zh");</p></li> </ol> http://stackoverflow.com/questions/605696/get-file-name-from-url 2 Get file name from URL Sietse 2009-03-03T09:24:25Z 2009-12-06T20:42:35Z <p>In Java, given a <code>java.net.URL</code> or a <code>String</code> in the form of <code>http://www.example.com/some/path/to/a/file.xml</code> , what is the easiest way to get the file name, minus the extension? So, in this example, I'm looking for something that returns <code>"file"</code>. </p> <p>I can think of several ways to do this, but I'm looking for something that's easy to read and short.</p> http://stackoverflow.com/questions/1851481/how-do-i-parse-this-json 0 How do I parse this JSON? Baddie 2009-12-05T07:35:11Z 2009-12-05T08:13:13Z <p>I'm using a book API that returns the following</p> <pre><code>var _OLBookInfo = { "ISBN:234234234234234": { "bib_key": "ISBN:234234234234234", "preview": "noview", "preview_url": "http://openlibrary.org/b/adsfasdfa", "info_url": "http://openlibrary.org/b/adsfasdf", "details": { "publishers": [ "W. H. sdafasdfasdf" ] } }; </code></pre> <p>How can I parse this with jQuery using the callback parameter of <code>$.get()</code></p> <p>Specifally, how do I get easy access to details -> publishers</p> <p><strong>Update</strong></p> <pre><code> $.post("/Home/LookupBook", { query: lookuptxt.val() }, function (data) { alert(data); //returns proper json data alert(data.details.publishers[0]); // get erro saying details.publishers[0] is null }, "json"); </code></pre> http://stackoverflow.com/questions/1809098/parsing-x-amf-mime-type-data 0 Parsing X-amf mime type data skorned 2009-11-27T14:29:28Z 2009-12-04T13:39:47Z <p>I have intercepted x-amf data being posted to a website from my computer by a flash application. I have the collected POST data in hex form. While some of it has translated directly to text, the rest is showing wierd symbols which probably means they're flash objects. How do I parse this data to get meaningful output outta it?</p> <p>Basically, I need a script/program/anything that will take in amf data in the hex form, and output text and flash objects...</p> http://stackoverflow.com/questions/1230112/how-to-parse-an-as-as3-file 0 How to parse an .as (AS3) file umop 2009-08-04T21:52:19Z 2009-12-04T11:10:59Z <p>I am looking to get as close as I can to parsing out an AS3 file into objects or XML. For instance, imagine the following class:</p> <pre><code>package { class SomeClass extends AnotherClass { private var someVariable:Number public function someMethod(someParameter:Number = 4):void { var someLocalVariable:Number = someParameter * (2 + someVariable); } } } </code></pre> <p>When parsed, it might be something like:</p> <pre><code>&lt;package name=""&gt; &lt;class id="783" name="SomeClass" extendsId="782"&gt; &lt;variable id="784" visibility="private" type="Number"/&gt; &lt;function id="785" name="someMethod" returnType="void"&gt; &lt;parameter id="786" name="someParameter" type="Number"&gt; &lt;expression&gt; &lt;number value="4"/&gt; &lt;/expression&gt; &lt;/parameter&gt; &lt;variable id="787" name="someLocalVariable" type="Number"/&gt; &lt;code&gt; &lt;assign toId="787"&gt; &lt;expression&gt; &lt;variable id="786"/&gt; &lt;operator type="*"/&gt; &lt;expression&gt; &lt;number value="2"/&gt; &lt;operator type="+"/&gt; &lt;variable id="786"/&gt; &lt;/expression&gt; &lt;/expression&gt; &lt;/assign&gt; &lt;/code&gt; &lt;/function&gt; &lt;/class&gt; &lt;/package&gt; </code></pre> <p>.. even if I don't get a nice, neat xml structure like this, even if it could just parse AS3 to some kind of capacity, it would be way beyond where I am now.</p> <p>Any thoughts?</p> <p>Thanks, Eric</p> http://stackoverflow.com/questions/1836057/cocoa-parse-nsstring-by-character-length 0 Cocoa: Parse NSString by character length Matt S. 2009-12-02T21:49:33Z 2009-12-03T21:03:57Z <p>I have an NSString I'm working with, but I would like to parse it by character length. So break it apart into an NSArray, and have each object in the array be x characters from that string. So basically, break up the string into sub strings of a certain length</p> <p>So, how do I do it?</p> <p>example:</p> <p>NSString *string = @"Here is my string"</p> <p>NSArray objects:</p> <p>"Her"</p> <p>"e i"</p> <p>"s m"</p> <p>"y s"</p> <p>"tri"</p> <p>"ng" </p> http://stackoverflow.com/questions/1841460/add-tm-to-text-with-jquery 1 Add TM to text with jQuery? Pselus 2009-12-03T17:17:28Z 2009-12-03T18:19:15Z <p>I need a way to go through all the text on my page, including links and other controls and find words that are in a certain list and add the html character entity <code>&amp;trade;</code> (&trade;) to them. I need this to be fast too. The list is held in a javascript array. I've already got code using .each to find all Links on the page with text from that list, but it's noticeably slow and I don't like that.</p> <p>Any better, more efficient ways to do this?</p> <p><strong><em>EDIT</em></strong></p> <p>People are suggesting other alternatives (server-side, css, etc.) We can't use those because these words are in URL's all over the site. We would mess up our URL's all over the site. We are using DotNetNuke to do this and the client just told us today that every time their products appear on the entire site (including links) they want them to be in all caps and have TM appended. If we change the products in the database, all the links suddenly have "trade" appended to the end of them. The nature of DNN says that we can't do this server-side. We could go through and manually change it in each page...but the site is 1,900+ pages...... SO! Client side is the route we want to go.</p> http://stackoverflow.com/questions/1828641/how-to-parse-a-uri-like-this-in-java 2 How to parse a URI like this in Java Frank 2009-12-01T20:22:34Z 2009-12-02T03:12:06Z <p>I'm trying to parse the following URI : <a href="http://translate.google.com/#zh-CN|en|" rel="nofollow">http://translate.google.com/#zh-CN|en|</a>你</p> <p>but got this error message : </p> <pre><code>java.net.URISyntaxException: Illegal character in fragment at index 34: http://translate.google.com/#zh-CN|en|你 at java.net.URI$Parser.fail(URI.java:2809) at java.net.URI$Parser.checkChars(URI.java:2982) at java.net.URI$Parser.parse(URI.java:3028) </code></pre> <p>It's having problem with the "|" character, if I get rid of the "|", the last Chinese char is not causing any problem, what's the right way to handle this ?</p> <p>My method look like this :</p> <pre><code> public static void displayFileOrUrlInBrowser(String File_Or_Url) { try { Desktop.getDesktop().browse(new URI(File_Or_Url.replace(" ","%20").replace("^","%5E"))); } catch (Exception e) { e.printStackTrace(); } } </code></pre> <p>Thanks for the answers, but BalusC's solution seems to work only for an instance of the url, my method needs to work with any url I pass to it, how would it know where's the starting point to cut the url into two parts and only encode the second part ?</p> http://stackoverflow.com/questions/1669797/are-there-net-framework-methods-to-parse-an-email-mime 1 Are there .NET Framework methods to parse an email (MIME)? Neil C. Obremski 2009-11-03T19:59:35Z 2009-12-01T16:48:48Z <p>Is there a class or set of functions built into the .NET Framework (3.5+) to parse raw emails (MIME documents)?</p> <p>I am not looking for anything fancy or a separate library, it needs to be built-in. I'm going to be using this in some unit tests and need only grab the main headers of interest (To, From, Subject) along with the body (which in this case will always be text and therefore no MIME trees or boundaries). I've written several MIME parsers in the past and if there isn't anything readily available, I'll just put together something from regular expressions. It would be great to be able to do something like:</p> <pre><code>MailMessage msg = MailMessage.Parse(text); </code></pre> <p>Thoughts?</p> http://stackoverflow.com/questions/1584813/struggling-with-xml-namespaces-linq-what-am-i-doing-wrong-here 0 struggling with XML namespaces (linq)... what am I doing wrong here? reinier 2009-10-18T12:55:02Z 2009-11-29T17:44:51Z <p>Hi,</p> <p>Trying to parse some XML but apparently this is too much for a lazy sunday afternoon,</p> <p>this is my code: (I Tried the XPathDocument and XmlDocument approach too but this also failed miserably)</p> <pre><code> XmlDocument xmlDoc = new XmlDocument(); xmlDoc.LoadXml(postData); XDocument xDoc = XDocument.Load(new XmlNodeReader(xmlDoc)); XNamespace soapEnv = "http://schemas.xmlsoap.org/soap/envelope/"; XElement xEnv = xDoc.Descendants(soapEnv + "Envelope").First(); XElement xBody = xEnv.Descendants(soapEnv + "Body").First(); XElement xReadReply = xBody.Descendants("ReadReplyReq").First(); </code></pre> <p>The last line fails with the exception: no elements in this collection however if I change this last line into:</p> <pre><code> XElement xReadReply = xBody.Descendants().First(); </code></pre> <p>it returns the first node which in fact is the "ReadReplyReq" node.</p> <p>Having finally gotten these Namespaces working, it now fails on the first node without a namepace... ooh bitter irony ;^)</p> <p>This is the XML I'm trying to parse:</p> <pre><code> &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"&gt; &lt;SOAP-ENV:Header&gt; &lt;TransactionID xmlns="http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-5-MM7-1-2" SOAP-ENV:actor="" SOAP-ENV:mustUnderstand="1"&gt;12345678&lt;/TransactionID&gt; &lt;/SOAP-ENV:Header&gt; &lt;SOAP-ENV:Body&gt; &lt;ReadReplyReq xmlns="http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-5-MM7-1-2"&gt; &lt;MMStatus&gt;Read&lt;/MMStatus&gt; &lt;TimeStamp&gt;2007-12-13T14:05:27+01:00&lt;/TimeStamp&gt; &lt;MessageID&gt;54321&lt;/MessageID&gt; &lt;Sender&gt; &lt;ShortCode&gt;+12345&lt;/ShortCode&gt; &lt;/Sender&gt; &lt;Recipient&gt; &lt;Number&gt;+12345&lt;/Number&gt; &lt;/Recipient&gt; &lt;StatusText&gt;Message has been read&lt;/StatusText&gt; &lt;MM7Version&gt;5.3.0&lt;/MM7Version&gt; &lt;/ReadReplyReq&gt; &lt;/SOAP-ENV:Body&gt; &lt;/SOAP-ENV:Envelope&gt; </code></pre> <p>what last step am I missing here?</p> <p>thanks</p> <p>R</p> <p>p.s. and why can't the XPath not just be something more intuitive like: "//SOAP-ENV:Envelope/SOAP-ENV:Body/ReadReplyReq/MMStatus", instead of all these crazy hoops one has to jump through.</p> http://stackoverflow.com/questions/1801767/problem-filtering-an-array-into-multiple-tableviews-based-on-seismicxml 0 Problem filtering an Array into multiple Tableviews (based on SeismicXML) cal 2009-11-26T05:51:54Z 2009-11-26T05:51:54Z <p>I've taken the Seismc XMl example and adjusted it to my needs, I've added a tab bar controller with multiple tabs each with a TableView, so far so good, I now want to filter the main TableView, so that different info appears in each of the TableViews based on category.</p> <p>I've created a class for each filter "type" in the app delegate, and I'm trying to create a new array for each filter, these arrays are based based on the master Earthquake array that the Apple sample uses, e.g</p> <ul> <li>(NSArray *)FilterByArtCategory { NSPredicate <em>predicate = [NSPredicate predicateWithFormat:@"kCategory like[c] \"</em>a*\""]; NSArray *filteredArray = [self.currentEarthquakeObject filteredArrayUsingPredicateredicate]; return filteredArray; }</li> </ul> <p>Then in the Art category view controller</p> <p>@implementation ArtViewController</p> <ul> <li><p>(NSArray *)states { return [(StatesAppDelegate *)[[UIApplication sharedApplication] delegate] FilterByArtCategory]; }</p></li> <li><p>(UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath { UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"stateCell"]; cell.text = [[self.states objectAtIndex:indexPath.row] valueForKey:@"genre"]; return cell; }</p></li> </ul> <p>However nothing appears in my ArtViewController table view, I get a warning saying "Earthquake may not respond to filteredArrayUsingPredicate" for NSArray *filteredArray =.</p> <p>So I guess the array isn't being created properly. I a bit confused about how the Seismic XML example creates the array objects, I understand basic array examples but I'm a bit lost here , am I missing something obvious?</p> <p>Help would be greatly appreciated... </p> http://stackoverflow.com/questions/1792378/iis7-parse-error 0 IIS7 parse error. seina 2009-11-24T19:30:12Z 2009-11-24T19:36:47Z <p>I just put all my aspx files on the local folder and made a website in IIS7. I added a virtual directory to it and then converted the virtual directory to application. The website loads properly but when i click the link that calls my application i get this error message.</p> <p>Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. </p> <p>Parser Error Message: Could not load type 'XXXX.xxxx'.</p> <p>The error line in code is this -</p> <p>Line 1: &lt;%@ Master Language="VB" Inherits="_XXXX.xxxx" Codebehind="XXX.xx.vb" %></p> <p>How do i fix this?</p> http://stackoverflow.com/questions/1789841/parse-user-input-concerning-search-criteria 2 Parse user-input concerning search criteria RvdLee 2009-11-24T12:41:29Z 2009-11-24T14:39:33Z <p>I'm looking for a way to parse some user-input. The input should show which searches have to be performed and how they have to be combined.</p> <ul> <li>1 AND 2</li> <li>(3 AND 2) OR 1</li> <li>(3 AND 2) OR (1 AND 4)</li> <li>( (3 OR 4) AND 1) OR 2</li> <li>etc.</li> </ul> <p>The first example should combine the results of search 1 and 2 in an AND-fashion. The second example should combine the results of search 3 and 2 in an AND-fashion, and combine the results of this combination to the results of search 1 in an OR-fashion. Etc.</p> <p>Any ideas on how to do this?</p> http://stackoverflow.com/questions/773340/can-you-provide-an-example-of-parsing-html-with-your-favorite-parser 20 Can you provide an example of parsing HTML with your favorite parser? Chas. Owens 2009-04-21T15:55:37Z 2009-11-24T13:23:11Z <p>This question is a lazy way of collecting examples of parsing HTML with a variety of languages and parsing libraries. Individual comments will be linked to in answers to questions about how to parse HTML with regexes as a way of showing the right way to do things (similar to how I use <a href="http://stackoverflow.com/questions/701166">Can you provide some examples of why it is hard to parse XML and HTML with a regex?</a>).</p> <p>For the sake of consistency, I ask that the example be parsing an HTML file for the <code>href</code> in anchor tags. To make it easy to search this question, I ask that you follow this format</p> <p>language: <br /> library: </p> <pre><code>&lt;example code&gt; </code></pre> <p>Please make the library a link to the documentation for the library. If you want to provide an example other than extracting links, please include a </p> <p>purpose: </p> <p>after the "library:".</p> <p>Note, the tags have been changed to draw in other languages. Here is a history of the tags this post has had: c#, perl, python, ruby, vb.net, and parsing.</p>