<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/tags/between</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Mon, 20 May 2013 14:00:22 GMT</pubDate>
<item>
<title>(Ruby) Get string between two strings - joshmn</title>
<link>http://snipplr.com/view/70878/get-string-between-two-strings/</link>
<description><![CDATA[ <p>If you're using Rails and want to make this a global function, drop this into your application_controller and call it as a function.

Example:
     # get_string_between("hellomyfriendmoto", 'o', 'm')
     # > myfriend</p> ]]></description>
<pubDate>Mon, 22 Apr 2013 06:50:51 GMT</pubDate>
<guid>http://snipplr.com/view/70878/get-string-between-two-strings/</guid>
</item>
<item>
<title>(PHP) Substring between two strings - dmertl</title>
<link>http://snipplr.com/view/67576/substring-between-two-strings/</link>
<description><![CDATA[ <p>Get the substring between two strings</p> ]]></description>
<pubDate>Wed, 03 Oct 2012 12:26:03 GMT</pubDate>
<guid>http://snipplr.com/view/67576/substring-between-two-strings/</guid>
</item>
<item>
<title>(C#) Transfer data between forms - hairajeshk</title>
<link>http://snipplr.com/view/46155/transfer-data-between-forms/</link>
<description><![CDATA[ <p>http://www.vbdotnetheaven.com/UploadFile/thiagu304/passdata12262006073406AM/passdata.aspx</p> ]]></description>
<pubDate>Mon, 27 Dec 2010 18:00:00 GMT</pubDate>
<guid>http://snipplr.com/view/46155/transfer-data-between-forms/</guid>
</item>
<item>
<title>(ActionScript 3) Flash, Flex and Html to pass parameters - activetofocus</title>
<link>http://snipplr.com/view/41050/flash-flex-and-html-to-pass-parameters/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 26 Sep 2010 14:10:33 GMT</pubDate>
<guid>http://snipplr.com/view/41050/flash-flex-and-html-to-pass-parameters/</guid>
</item>
<item>
<title>(C#) Return string from between two matched strings - blackf0rk</title>
<link>http://snipplr.com/view/35199/return-string-from-between-two-matched-strings/</link>
<description><![CDATA[ <p>This code will take a start and end string and then search for them within the subject string. It returns what is between the start and end strings. As an example, if I had the following text...

Some test text string, with a start  and an end .

...I could call this function to get the text between the  and the  strings. This function will return: "and an end"</p> ]]></description>
<pubDate>Tue, 25 May 2010 11:40:25 GMT</pubDate>
<guid>http://snipplr.com/view/35199/return-string-from-between-two-matched-strings/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Find the shortest rotation angle between two angles - adrianparr</title>
<link>http://snipplr.com/view/32347/as3-find-the-shortest-rotation-angle-between-two-angles/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 19 Apr 2010 13:33:03 GMT</pubDate>
<guid>http://snipplr.com/view/32347/as3-find-the-shortest-rotation-angle-between-two-angles/</guid>
</item>
<item>
<title>(Rails) generate a mysql BETWEEN clause to find within a date range - mepatterson</title>
<link>http://snipplr.com/view/22872/generate-a-mysql-between-clause-to-find-within-a-date-range/</link>
<description><![CDATA[ <p>requires Rails libraries.  could be rewritten to just use core Ruby libs, but I'm too lazy right now and I use this entirely in my Rails apps.</p> ]]></description>
<pubDate>Tue, 10 Nov 2009 14:25:09 GMT</pubDate>
<guid>http://snipplr.com/view/22872/generate-a-mysql-between-clause-to-find-within-a-date-range/</guid>
</item>
<item>
<title>(SAS) How to calculate number of years and number of days between 2 dates; - sarathannapareddy</title>
<link>http://snipplr.com/view/18283/how-to-calculate-number-of-years-and-number-of-days-between-2-dates/</link>
<description><![CDATA[ <p>Exploring the yrdif and datdif functions in SAS as well as INTCK function:
There are several ways to calculate the number of years between two dates and out of all the methods, YRDIF function results the most accurate value.

Syntax:

ageinyrs = YRDIF(birthdate, enddate, 'act/act');
ag_indays = DATDIF(birthdate, enddate, 'act/act');

Read more at: http://studysas.blogspot.com/2009/03/how-to-calculate-number-of-years-and.html</p> ]]></description>
<pubDate>Thu, 13 Aug 2009 17:15:50 GMT</pubDate>
<guid>http://snipplr.com/view/18283/how-to-calculate-number-of-years-and-number-of-days-between-2-dates/</guid>
</item>
<item>
<title>(SQL) MS SQL Generate All Date and Times Between 2 Dates - MMDeveloper</title>
<link>http://snipplr.com/view/16196/ms-sql-generate-all-date-and-times-between-2-dates/</link>
<description><![CDATA[ <p>I did not write this. Simple UDF to generate all date/times between 2 given date/times</p> ]]></description>
<pubDate>Mon, 22 Jun 2009 14:15:12 GMT</pubDate>
<guid>http://snipplr.com/view/16196/ms-sql-generate-all-date-and-times-between-2-dates/</guid>
</item>
<item>
<title>(MySQL) Select between two dates - craig1709</title>
<link>http://snipplr.com/view/14439/select-between-two-dates/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 26 Apr 2009 10:15:38 GMT</pubDate>
<guid>http://snipplr.com/view/14439/select-between-two-dates/</guid>
</item>
<item>
<title>(PHP) php - get text between tags - craig1709</title>
<link>http://snipplr.com/view/10689/php--get-text-between-tags/</link>
<description><![CDATA[ <p>pretty usefull</p> ]]></description>
<pubDate>Thu, 25 Dec 2008 13:02:06 GMT</pubDate>
<guid>http://snipplr.com/view/10689/php--get-text-between-tags/</guid>
</item>
<item>
<title>(Groovy) Calculate Number of Months Between 2 Dates - kouphax</title>
<link>http://snipplr.com/view/10119/calculate-number-of-months-between-2-dates/</link>
<description><![CDATA[ <p>Calculates the number of Months between 2 given dates</p> ]]></description>
<pubDate>Fri, 28 Nov 2008 04:24:38 GMT</pubDate>
<guid>http://snipplr.com/view/10119/calculate-number-of-months-between-2-dates/</guid>
</item>
<item>
<title>(PHP) extract string between - jamesming</title>
<link>http://snipplr.com/view/7392/extract-string-between/</link>
<description><![CDATA[ <p>Two functions.  1) Find the string between characters.  2) Create array of strings found between two characters.</p> ]]></description>
<pubDate>Fri, 18 Jul 2008 20:00:07 GMT</pubDate>
<guid>http://snipplr.com/view/7392/extract-string-between/</guid>
</item>
<item>
<title>(Ruby) Rails days between dates - gdonald</title>
<link>http://snipplr.com/view/1251/rails-days-between-dates/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 27 Sep 2006 13:27:08 GMT</pubDate>
<guid>http://snipplr.com/view/1251/rails-days-between-dates/</guid>
</item>
</channel>
</rss>