<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Regex for Dummies: Day 5</title>
	<atom:link href="http://blog.themeforest.net/tutorials/regex-for-dummies-day-5/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.themeforest.net/tutorials/regex-for-dummies-day-5/</link>
	<description>The ThemeForest Blog</description>
	<lastBuildDate>Mon, 27 Sep 2010 19:49:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Farrel</title>
		<link>http://blog.themeforest.net/tutorials/regex-for-dummies-day-5/comment-page-1/#comment-20193</link>
		<dc:creator>Farrel</dc:creator>
		<pubDate>Wed, 12 Aug 2009 20:31:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1755#comment-20193</guid>
		<description>I use regexpr in R and in a program called search everything. I know there is a boolean OR; it is &#124;. However is there a boolean AND? For instance, how do I match a string that I know has &quot;farrel&quot; somewhere in it and has &quot;august&quot; somewhere in it.</description>
		<content:encoded><![CDATA[<p>I use regexpr in R and in a program called search everything. I know there is a boolean OR; it is |. However is there a boolean AND? For instance, how do I match a string that I know has &#8220;farrel&#8221; somewhere in it and has &#8220;august&#8221; somewhere in it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Max</title>
		<link>http://blog.themeforest.net/tutorials/regex-for-dummies-day-5/comment-page-1/#comment-20183</link>
		<dc:creator>Max</dc:creator>
		<pubDate>Wed, 12 Aug 2009 17:59:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1755#comment-20183</guid>
		<description>How would I select everything that is not &quot;xyz.&quot; But not x,y or z. I want them as one group.

Apparently [^(xyz)] picks either of the letters. I want to say that it should pick the things not having xyz as group together.

Is that possible?

Thanks</description>
		<content:encoded><![CDATA[<p>How would I select everything that is not &#8220;xyz.&#8221; But not x,y or z. I want them as one group.</p>
<p>Apparently [^(xyz)] picks either of the letters. I want to say that it should pick the things not having xyz as group together.</p>
<p>Is that possible?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kamal Prasad</title>
		<link>http://blog.themeforest.net/tutorials/regex-for-dummies-day-5/comment-page-1/#comment-13495</link>
		<dc:creator>Kamal Prasad</dc:creator>
		<pubDate>Fri, 12 Jun 2009 22:33:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1755#comment-13495</guid>
		<description>Hi Jeff,

Thanks a bunch for the tutorials. 

I subscribed to the feed using my browser&#039;s built in RSS reader. Does that count or do I have to use feedburner?

I am trying to use jquery to break Right Ascension / Declination data into their constituents (hours , minutes, and seconds) and (degrees, arc-minutes and arc-seconds), respectively from a string and store them in variables as numbers.

E.g. $dec = &quot;-35:48:00&quot; -&gt; $dec_d = -35, $dec_m = 48, $dec_s = 00

I have gotten as far as 
(-&#124;)+\d+
to get the expression to extract the first part but now I am stuck. I cannot figure out how to use jquery to break apart the string and store the information in the variables I need.

Maybe this will inspire a topic for a future tutorial. I appreciate any help you can provide. I have searched long and hard online but have not found something that makes sense.</description>
		<content:encoded><![CDATA[<p>Hi Jeff,</p>
<p>Thanks a bunch for the tutorials. </p>
<p>I subscribed to the feed using my browser&#8217;s built in RSS reader. Does that count or do I have to use feedburner?</p>
<p>I am trying to use jquery to break Right Ascension / Declination data into their constituents (hours , minutes, and seconds) and (degrees, arc-minutes and arc-seconds), respectively from a string and store them in variables as numbers.</p>
<p>E.g. $dec = &#8220;-35:48:00&#8243; -&gt; $dec_d = -35, $dec_m = 48, $dec_s = 00</p>
<p>I have gotten as far as<br />
(-|)+\d+<br />
to get the expression to extract the first part but now I am stuck. I cannot figure out how to use jquery to break apart the string and store the information in the variables I need.</p>
<p>Maybe this will inspire a topic for a future tutorial. I appreciate any help you can provide. I have searched long and hard online but have not found something that makes sense.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: plutonium</title>
		<link>http://blog.themeforest.net/tutorials/regex-for-dummies-day-5/comment-page-1/#comment-9922</link>
		<dc:creator>plutonium</dc:creator>
		<pubDate>Thu, 07 May 2009 06:11:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1755#comment-9922</guid>
		<description>Thanks for this great screencast! Really cool!

One question: whats the name of the espresso theme you use? I like it. Where can I get this theme? In the Coffee House I didn&#039;t find it... :-(</description>
		<content:encoded><![CDATA[<p>Thanks for this great screencast! Really cool!</p>
<p>One question: whats the name of the espresso theme you use? I like it. Where can I get this theme? In the Coffee House I didn&#8217;t find it&#8230; <img src='http://blog.themeforest.net/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shaun C.</title>
		<link>http://blog.themeforest.net/tutorials/regex-for-dummies-day-5/comment-page-1/#comment-9872</link>
		<dc:creator>Shaun C.</dc:creator>
		<pubDate>Wed, 06 May 2009 11:14:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1755#comment-9872</guid>
		<description>This was a very interesting tutorial. Thanks Jeff!

A question for Jeff or to anyone else that is experienced with scraping: would this be a viable technique to use on a personal site if you wanted to, say, scrape your latest tweet on Twitter?

For example, I could easily see this being used in a real-world example to scrape data from Twitter&#039;s supplied XML feeds for your account.

I suspect this may not be optimal though. I recall reading something in the comments here on Themeforest that its best to use a cache of some sort so that your servers don&#039;t have to keep &#039;scraping&#039; Twitter every time the page loads. This is a new topic for me, so don&#039;t quote me on that. Just trying to put the pieces together.

If scraping isn&#039;t optimal for this use, can someone post up a link to a technique that would be a better choice?</description>
		<content:encoded><![CDATA[<p>This was a very interesting tutorial. Thanks Jeff!</p>
<p>A question for Jeff or to anyone else that is experienced with scraping: would this be a viable technique to use on a personal site if you wanted to, say, scrape your latest tweet on Twitter?</p>
<p>For example, I could easily see this being used in a real-world example to scrape data from Twitter&#8217;s supplied XML feeds for your account.</p>
<p>I suspect this may not be optimal though. I recall reading something in the comments here on Themeforest that its best to use a cache of some sort so that your servers don&#8217;t have to keep &#8217;scraping&#8217; Twitter every time the page loads. This is a new topic for me, so don&#8217;t quote me on that. Just trying to put the pieces together.</p>
<p>If scraping isn&#8217;t optimal for this use, can someone post up a link to a technique that would be a better choice?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Salman</title>
		<link>http://blog.themeforest.net/tutorials/regex-for-dummies-day-5/comment-page-1/#comment-9750</link>
		<dc:creator>Salman</dc:creator>
		<pubDate>Mon, 04 May 2009 20:34:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1755#comment-9750</guid>
		<description>Hi 

nice exercise 

this is what i used, i wanted the whole tag instead of href value so

&lt;a&gt;)

Salman</description>
		<content:encoded><![CDATA[<p>Hi </p>
<p>nice exercise </p>
<p>this is what i used, i wanted the whole tag instead of href value so</p>
<p><a>)</p>
<p>Salman</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://blog.themeforest.net/tutorials/regex-for-dummies-day-5/comment-page-1/#comment-9641</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Sat, 02 May 2009 16:23:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1755#comment-9641</guid>
		<description>You are making things easy man! lovely thanks and please continue doing this!</description>
		<content:encoded><![CDATA[<p>You are making things easy man! lovely thanks and please continue doing this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ethan</title>
		<link>http://blog.themeforest.net/tutorials/regex-for-dummies-day-5/comment-page-1/#comment-9528</link>
		<dc:creator>Ethan</dc:creator>
		<pubDate>Fri, 01 May 2009 08:41:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1755#comment-9528</guid>
		<description>Here&#039;s the regex I used.

/&lt;a&gt;]*href=[&quot;\&#039;](?!javascript)([^#&quot;\&#039;]+)[&quot;\&#039;]/i

it works like Phil&#039;s, but strips out javascript links (w/a negative lookahead) and strips out links to other anchors on the same page.</description>
		<content:encoded><![CDATA[<p>Here&#8217;s the regex I used.</p>
<p>/<a>]*href=["\'](?!javascript)([^#"\']+)["\']/i</p>
<p>it works like Phil&#8217;s, but strips out javascript links (w/a negative lookahead) and strips out links to other anchors on the same page.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eyveneena</title>
		<link>http://blog.themeforest.net/tutorials/regex-for-dummies-day-5/comment-page-1/#comment-9406</link>
		<dc:creator>Eyveneena</dc:creator>
		<pubDate>Wed, 29 Apr 2009 19:07:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1755#comment-9406</guid>
		<description>Thank you for this tutorial...I can better understand iterating now as well as how to append another list item to a unordered list. I have only been studying jQuery and javascript for six months,thus  I found this tutorial looking for instruction on how to append the last list item to the beginning of an unordered list in jQuery.  As I tried to use $(&#039;li:last&#039;)appendto(&#039;ul:first&#039;) (i left out the period quotations on purpose) it only appended the list item to the first list item.  Anyway, thank you again.

Eyveneena</description>
		<content:encoded><![CDATA[<p>Thank you for this tutorial&#8230;I can better understand iterating now as well as how to append another list item to a unordered list. I have only been studying jQuery and javascript for six months,thus  I found this tutorial looking for instruction on how to append the last list item to the beginning of an unordered list in jQuery.  As I tried to use $(&#8216;li:last&#8217;)appendto(&#8216;ul:first&#8217;) (i left out the period quotations on purpose) it only appended the list item to the first list item.  Anyway, thank you again.</p>
<p>Eyveneena</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://blog.themeforest.net/tutorials/regex-for-dummies-day-5/comment-page-1/#comment-9334</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Tue, 28 Apr 2009 09:22:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1755#comment-9334</guid>
		<description>Don&#039;t want to sound 2 needy and all that but I felt lost for a while there with no screencasts from you jeff. you do a great job at teaching us this stuff. I thank you very much.</description>
		<content:encoded><![CDATA[<p>Don&#8217;t want to sound 2 needy and all that but I felt lost for a while there with no screencasts from you jeff. you do a great job at teaching us this stuff. I thank you very much.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
