User A Nony Mouse - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T12:03:40Z http://stackoverflow.com/feeds/user/7182 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/55391/python-regular-expression-for-html-parsing-beautifulsoup/64983#64983 5 Answer by A Nony Mouse for Python regular expression for HTML parsing (BeautifulSoup) A Nony Mouse 2008-09-15T17:35:44Z 2009-09-14T13:19:03Z <p>I agree with Vinko <a href="http://www.crummy.com/software/BeautifulSoup/" rel="nofollow">BeautifulSoup</a> is the way to go. However I suggest using <code>fooId['value']</code> to <a href="http://www.crummy.com/software/BeautifulSoup/documentation.html#The%20attributes%20of%20Tags" rel="nofollow">get the attribute</a> rather than relying on value being the third attribute.</p> <pre><code>from BeautifulSoup import BeautifulSoup #Or retrieve it from the web, etc. html_data = open('/yourwebsite/page.html','r').read() #Create the soup object from the HTML data soup = BeautifulSoup(html_data) fooId = soup.find('input',name='fooId',type='hidden') #Find the proper tag value = fooId['value'] #The value attribute </code></pre> http://stackoverflow.com/questions/91234/multiple-keyboards-and-low-level-hooks/91540#91540 1 Answer by A Nony Mouse for Multiple keyboards and low-level hooks A Nony Mouse 2008-09-18T10:44:06Z 2008-09-18T10:44:06Z <p>There is a way to do this, I had It working using <a href="http://www.quickmacros.com/" rel="nofollow">quick macros</a> and <a href="http://www.quickmacros.com/forum/viewtopic.php?t=776" rel="nofollow">keyboard detector</a>.</p> http://stackoverflow.com/questions/91434/javascript-message-box/91477#91477 0 Answer by A Nony Mouse for javascript message box A Nony Mouse 2008-09-18T10:26:05Z 2008-09-18T10:26:05Z <p>It isn't possible to apply formatting to a standard dialogue box. However if you <em>really</em> want to format it you could flash up the message in HTML either next to the button or as a absolutely placed div, which you could format with CSS.</p> http://stackoverflow.com/questions/80963/processing-javascript-regex-submatches/83441#83441 2 Answer by A Nony Mouse for Processing Javascript RegEx submatches A Nony Mouse 2008-09-17T13:51:36Z 2008-09-17T13:51:36Z <p>The easiest solution would be to to replace all the tags, whether they are closed or not and let <code>.innerHTML</code> work out if they are matched or not it will much more resilient that way..</p> <pre><code>var tagreg = /\[(\/?)(b|u|i|s|center|code)]/ig div.innerHTML="[b][i]helloworld[/b]".replace(tagreg, "&lt;$1$2&gt;") //no closing i //div.inerHTML=="&lt;b&gt;&lt;i&gt;helloworld&lt;/i&gt;&lt;/b&gt;" </code></pre> http://stackoverflow.com/questions/64904/parsings-strings-extracting-words-and-phrases-javascript/65085#65085 0 Answer by A Nony Mouse for parsings strings: extracting words and phrases [JavaScript] A Nony Mouse 2008-09-15T17:49:19Z 2008-09-15T17:57:32Z <p>A simple regular expression will do but leave the quotation marks. e.g.</p> <pre><code>'foo bar "lorem ipsum" baz'.match(/("[^"]*")|([^\s"]+)/g) output: ['foo', 'bar', '"lorem ipsum"', 'baz'] </code></pre> <p>edit: beaten to it by shyamsundar, sorry for the double answer</p> http://stackoverflow.com/questions/58711/how-would-you-design-a-very-pythonic-ui-framework/62780#62780 3 Answer by A Nony Mouse for How would you design a very "Pythonic" UI framework? A Nony Mouse 2008-09-15T13:18:54Z 2008-09-15T13:18:54Z <p>With some Metaclass magic to keep the ordering I have the following working. I'm not sure how pythonic it is but it is good fun for creating simple things. </p> <pre><code>class w(Wndw): title='Hello World' class txt(Txt): # either a new class text='Insert name here' lbl=Lbl(text='Hello') # or an instance class greet(Bbt): text='Greet' def click(self): #on_click method self.frame.lbl.text='Hello %s.'%self.frame.txt.text app=w() </code></pre>