<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tips n Tracks &#187; Chetankumar Akarte</title>
	<atom:link href="http://www.tipsntracks.com/author/admin/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tipsntracks.com</link>
	<description>knowledge Is Power</description>
	<lastBuildDate>Tue, 01 Jun 2010 17:23:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Learning JavaScript tutorial &#8211; JavaScript with Statement</title>
		<link>http://www.tipsntracks.com/361/learning-javascript-tutorial-javascript-with-statement.html</link>
		<comments>http://www.tipsntracks.com/361/learning-javascript-tutorial-javascript-with-statement.html#comments</comments>
		<pubDate>Tue, 04 May 2010 05:16:44 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=361</guid>
		<description><![CDATA[Learning JavaScript tutorial &#8211; JavaScript with Statement JavaScript offer lots of verity whiling dealing with the statements. Along with the flow control and loop control statements JavaScript supports object-related &#34;with statements&#34;. With statement allows using a shorthand notation when referring objects and deals with the object scope chain. with &#40;object&#41; &#123; &#160; statement&#40;s&#41;; &#125; Let [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/361/learning-javascript-tutorial-javascript-with-statement.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning JavaScript tutorial &#8211; JavaScript switch Statement</title>
		<link>http://www.tipsntracks.com/357/learning-javascript-tutorial-javascript-switch-statement.html</link>
		<comments>http://www.tipsntracks.com/357/learning-javascript-tutorial-javascript-switch-statement.html#comments</comments>
		<pubDate>Sun, 25 Apr 2010 06:52:23 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=357</guid>
		<description><![CDATA[Learning JavaScript tutorial &#8211; JavaScript switch Statement JavaScript switch statement control the flow of program execution via a multiway branch. When we need execute a statement block depending on the value of a single variable; JavaScript switch Statement is the best alternative to JavaScript if Condition Statement to it handles the situation more efficiently than [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/357/learning-javascript-tutorial-javascript-switch-statement.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning JavaScript tutorial &#8211; JavaScript if, if else and else if Condition Statement</title>
		<link>http://www.tipsntracks.com/354/learning-javascript-tutorial-javascript-if-if-else-and-else-if-condition-statement.html</link>
		<comments>http://www.tipsntracks.com/354/learning-javascript-tutorial-javascript-if-if-else-and-else-if-condition-statement.html#comments</comments>
		<pubDate>Fri, 23 Apr 2010 14:21:56 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=354</guid>
		<description><![CDATA[Learning JavaScript tutorial &#8211; JavaScript if, if else and else if Condition Statement Decision making based on different computations or perform actions depending on a programmer-specified condition is one of the features of the JavaScript language. JavaScript if Condition Statement JavaScript if Condition Statements are used to perform different actions (make decisions) based on different [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/354/learning-javascript-tutorial-javascript-if-if-else-and-else-if-condition-statement.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning JavaScript tutorial &#8211; JavaScript Statements</title>
		<link>http://www.tipsntracks.com/352/learning-javascript-tutorial-javascript-statements.html</link>
		<comments>http://www.tipsntracks.com/352/learning-javascript-tutorial-javascript-statements.html#comments</comments>
		<pubDate>Mon, 19 Apr 2010 23:59:10 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=352</guid>
		<description><![CDATA[Learning JavaScript tutorial &#8211; JavaScript Statements A JavaScript program is simply a sequence of one or more JavaScript statements. JavaScript Statements is used to define the logic to make something happen. A statement can be used to declare a variable and assign a value. A statement can also be a function call, i.e. document.write(). JavaScript [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/352/learning-javascript-tutorial-javascript-statements.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Learning JavaScript tutorial &#8211; JavaScript Operator Precedence and Associativity</title>
		<link>http://www.tipsntracks.com/345/learning-javascript-tutorial-javascript-operator-precedence-and-associativity.html</link>
		<comments>http://www.tipsntracks.com/345/learning-javascript-tutorial-javascript-operator-precedence-and-associativity.html#comments</comments>
		<pubDate>Wed, 14 Apr 2010 21:17:31 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=345</guid>
		<description><![CDATA[Learning JavaScript tutorial &#8211; JavaScript Operator Precedence and Associativity In our last article &#34;Learning JavaScript tutorial – JavaScript Expressions and Operators&#34;, we take a look at JavaScript Operators. JavaScript Operators have a predefined order of precedence which are used to process and evaluate a JavaScript expression. JavaScript Operator Precedence is similar to the Mathematical Operator [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/345/learning-javascript-tutorial-javascript-operator-precedence-and-associativity.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with System.DateTime &#8211; Date and Time String Formatting with C#</title>
		<link>http://www.tipsntracks.com/343/working-with-system-datetime-date-and-time-string-formatting-with-c-sharp.html</link>
		<comments>http://www.tipsntracks.com/343/working-with-system-datetime-date-and-time-string-formatting-with-c-sharp.html#comments</comments>
		<pubDate>Tue, 06 Apr 2010 10:42:13 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[C# Language]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=343</guid>
		<description><![CDATA[Working with System.DateTime &#8211; Date and Time String Formatting with C# Software Development with C# needs to work with dates and times. To work efficiently with Date and Time .NET has the System.DateTime (DateTime) namespace to help us. You can use DateTime to get DateTime values, generate new DateTime values and format DateTime values (parse [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/343/working-with-system-datetime-date-and-time-string-formatting-with-c-sharp.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Learning JavaScript tutorial &#8211; JavaScript Expressions and Operators</title>
		<link>http://www.tipsntracks.com/341/learning-javascript-tutorial-javascript-expressions-and-operators.html</link>
		<comments>http://www.tipsntracks.com/341/learning-javascript-tutorial-javascript-expressions-and-operators.html#comments</comments>
		<pubDate>Sun, 04 Apr 2010 06:33:01 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=341</guid>
		<description><![CDATA[Learning JavaScript tutorial &#8211; JavaScript Expressions and Operators JavaScript Expressions and Operators are very similar with most popular programming languages like C, C++, or Java. In this chapter we take an overview of the basic building blocks of JavaScript: operators, expressions. JavaScript Expressions JavaScript Expression is a combination of values, variables, operators, and functions that [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/341/learning-javascript-tutorial-javascript-expressions-and-operators.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Learning JavaScript tutorial &#8211; JavaScript Reserved KeyWords</title>
		<link>http://www.tipsntracks.com/338/learning-javascript-tutorial-javascript-reserved-keywords.html</link>
		<comments>http://www.tipsntracks.com/338/learning-javascript-tutorial-javascript-reserved-keywords.html#comments</comments>
		<pubDate>Tue, 16 Mar 2010 07:02:29 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=338</guid>
		<description><![CDATA[Learning JavaScript tutorial &#8211; JavaScript Reserved KeyWords JavaScript Reserved KeyWords are part of the JavaScript language syntax. JavaScript Reserved KeyWords has special meanings and used to instruct JavaScript interpreter to perform a specific pre define task. JavaScript has some reserved keywords which can not be used as an identifier. Using JavaScript Reserved KeyWords as an [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/338/learning-javascript-tutorial-javascript-reserved-keywords.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Learning JavaScript tutorial &#8211; JavaScript Variables</title>
		<link>http://www.tipsntracks.com/335/learning-javascript-tutorial-javascript-variables.html</link>
		<comments>http://www.tipsntracks.com/335/learning-javascript-tutorial-javascript-variables.html#comments</comments>
		<pubDate>Mon, 15 Mar 2010 07:02:22 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=335</guid>
		<description><![CDATA[Learning JavaScript tutorial &#8211; JavaScript Variables JavaScript Variables are the main building blocks of JavaScript Scripting language. JavaScript Variables are used for storing (contains) the data (value) and manipulate that data in your programs. Every JavaScript variable has a name, called its &#8216;identifier&#8217; and optional data called &#8216;Literals&#8217;. JavaScript Variables are declared using JavaScript &#8216;var&#8217; [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/335/learning-javascript-tutorial-javascript-variables.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning JavaScript tutorial &#8211; JavaScript Literals and Identifiers</title>
		<link>http://www.tipsntracks.com/334/learning-javascript-tutorial-javascript-literals-and-identifiers.html</link>
		<comments>http://www.tipsntracks.com/334/learning-javascript-tutorial-javascript-literals-and-identifiers.html#comments</comments>
		<pubDate>Sun, 14 Mar 2010 11:00:58 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/334/learning-javascript-tutorial-javascript-literals-and-identifiers.html</guid>
		<description><![CDATA[Learning JavaScript tutorial &#8211; JavaScript Literals and Identifiers JavaScript Literals JavaScript Literals are the notation for representing a fixed data value that appears directly in a JavaScript program. JavaScript Literals helps us to assign values (initialize) to various JavaScript Data Types and Variables; such as integers, floating-point numbers, strings, and Booleans; enumerated Data Types and [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/334/learning-javascript-tutorial-javascript-literals-and-identifiers.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Learning JavaScript tutorial &#8211; JavaScript Comments</title>
		<link>http://www.tipsntracks.com/332/learning-javascript-tutorial-javascript-comments.html</link>
		<comments>http://www.tipsntracks.com/332/learning-javascript-tutorial-javascript-comments.html#comments</comments>
		<pubDate>Sat, 13 Mar 2010 19:38:59 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=332</guid>
		<description><![CDATA[Learning JavaScript tutorial &#8211; JavaScript Comments JavaScript Comments allows us to add remarks and a well written explanation about the working of JavaScript code. JavaScript Comments make the code more readable, understandable for future reference. Commenting your JavaScript code makes it easier for others to understand. To increase re-usability of a JavaScript code be, sure [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/332/learning-javascript-tutorial-javascript-comments.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Learning JavaScript tutorial &#8211; Lexical Structure and Statements</title>
		<link>http://www.tipsntracks.com/330/learning-javascript-tutorial-lexical-structure-and-statements.html</link>
		<comments>http://www.tipsntracks.com/330/learning-javascript-tutorial-lexical-structure-and-statements.html#comments</comments>
		<pubDate>Sat, 13 Mar 2010 09:20:09 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=330</guid>
		<description><![CDATA[Learning JavaScript tutorial &#8211; Lexical Structure and Statements A JavaScript statement is a command to a web browser to perform specific task define (program written) by the user. JavaScript Statements are written with the set of elementary rules that specifies how to write JavaScript programs. A JavaScript program is a set of one or more [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/330/learning-javascript-tutorial-lexical-structure-and-statements.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning JavaScript tutorial &#8211; First Look at Client-Side JavaScript</title>
		<link>http://www.tipsntracks.com/328/learning-javascript-tutorial-first-look-at-client-side-javascript.html</link>
		<comments>http://www.tipsntracks.com/328/learning-javascript-tutorial-first-look-at-client-side-javascript.html#comments</comments>
		<pubDate>Mon, 08 Mar 2010 19:04:24 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=328</guid>
		<description><![CDATA[Learning JavaScript tutorial &#8211; First Look at Client-Side JavaScript As we seen in our first article &#34;Learning JavaScript &#8211; an introduction with JavaScript&#34;, JavaScript is mostly used as a client-side scripting language. With Client-side JavaScript, we are able to interpreter with the Document Object Model (DOM) of a web browser. On Client-Side, JavaScript add interactive [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/328/learning-javascript-tutorial-first-look-at-client-side-javascript.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning JavaScript tutorial &#8211; an introduction with JavaScript</title>
		<link>http://www.tipsntracks.com/323/learning-javascript-tutorial-an-introduction-with-javascript.html</link>
		<comments>http://www.tipsntracks.com/323/learning-javascript-tutorial-an-introduction-with-javascript.html#comments</comments>
		<pubDate>Fri, 05 Mar 2010 17:46:19 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=323</guid>
		<description><![CDATA[Learning JavaScript tutorial &#8211; an introduction with JavaScript JavaScript is most popular, commonly used, object-oriented, client-side scripting language. JavaScript widely used in tasks ranging from the form data validation to the development of enhanced user interfaces and dynamic websites. The primary use of Client-side JavaScript is to write functions that are embedded in or included [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/323/learning-javascript-tutorial-an-introduction-with-javascript.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to find out duplicate records (duplicate data) in a SQL Server table</title>
		<link>http://www.tipsntracks.com/322/how-to-find-out-duplicate-records-duplicate-data-in-a-sql-server-table.html</link>
		<comments>http://www.tipsntracks.com/322/how-to-find-out-duplicate-records-duplicate-data-in-a-sql-server-table.html#comments</comments>
		<pubDate>Sun, 21 Feb 2010 18:46:44 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/322/how-to-find-out-duplicate-records-duplicate-data-in-a-sql-server-table.html</guid>
		<description><![CDATA[How to find out duplicate records (duplicate data) in a SQL Server table Records duplication or data redundancy is the common issue we face with SQL Server table. In this article we will find out all the duplicate records (duplicate data) in a SQL Server table. We have to use the group by with having [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/322/how-to-find-out-duplicate-records-duplicate-data-in-a-sql-server-table.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GridView Custom Paging in ASP.NET 3.5 with SQL Server Stored Procedure</title>
		<link>http://www.tipsntracks.com/316/gridview-custom-paging-in-asp-net-3-5-with-sql-server-stored-procedure.html</link>
		<comments>http://www.tipsntracks.com/316/gridview-custom-paging-in-asp-net-3-5-with-sql-server-stored-procedure.html#comments</comments>
		<pubDate>Mon, 15 Feb 2010 18:13:20 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C# Language]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=316</guid>
		<description><![CDATA[GridView Custom Paging in ASP.NET 3.5 with SQL Server Stored Procedure GridView — Displays a set of data items in an HTML table. ASP.NET GridView control enables you to display, sort, page, select, and edit data. Default gridview paging works best when you deal with limited pages. If there are more pages then, the performance [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/316/gridview-custom-paging-in-asp-net-3-5-with-sql-server-stored-procedure.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Create Temporary virtual table (or a records set) with SQL Server Stored Procedure</title>
		<link>http://www.tipsntracks.com/311/create-temporary-virtual-table-or-a-records-set-with-sql-server-stored-procedure.html</link>
		<comments>http://www.tipsntracks.com/311/create-temporary-virtual-table-or-a-records-set-with-sql-server-stored-procedure.html#comments</comments>
		<pubDate>Sun, 07 Feb 2010 18:27:27 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=311</guid>
		<description><![CDATA[Create Temporary virtual table (or a records set) with SQL Server Stored Procedure Some time we need to create a virtual table to manipulate data without affecting the actual data in the actual table. You can create a virtual table by two ways. Using CREATE TABLE statement and with DECLARE statement. Let&#8217;s consider, I have [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/311/create-temporary-virtual-table-or-a-records-set-with-sql-server-stored-procedure.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Pause a Console Application for User Input</title>
		<link>http://www.tipsntracks.com/308/pause-a-console-application-for-user-input.html</link>
		<comments>http://www.tipsntracks.com/308/pause-a-console-application-for-user-input.html#comments</comments>
		<pubDate>Sat, 19 Dec 2009 18:46:31 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[C# Language]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=308</guid>
		<description><![CDATA[Pause a Console Application for User Input or Pause Command in a Console Application While working with C# or VB.NET Console Applications, you may require to pause for the user input or display a message to the user. Console application window get exit as the program execution finished. Following Piece of code will do it [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/308/pause-a-console-application-for-user-input.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Read XML data from a URL by using Visual C#</title>
		<link>http://www.tipsntracks.com/305/read-xml-data-from-a-url-by-using-visual-c.html</link>
		<comments>http://www.tipsntracks.com/305/read-xml-data-from-a-url-by-using-visual-c.html#comments</comments>
		<pubDate>Fri, 18 Dec 2009 12:20:29 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[C# Language]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=305</guid>
		<description><![CDATA[Read XML data from a URL by using Visual C# C# has a powerful and flexible namespace System.Xml to manipulate XML. System.Xml namespace provides the XMLTextReader class to read XML (Extensible Markup Language) from a URL (Uniform Resource Locator). Now we want to read xml file test.xml (http://localhost/test.xml) located at your localhost. You can also [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/305/read-xml-data-from-a-url-by-using-visual-c.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding Last line in the text using regular expressions with .net</title>
		<link>http://www.tipsntracks.com/301/finding-last-line-in-the-text-using-regular-expressions-with-net.html</link>
		<comments>http://www.tipsntracks.com/301/finding-last-line-in-the-text-using-regular-expressions-with-net.html#comments</comments>
		<pubDate>Wed, 16 Dec 2009 07:20:13 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Regular Expression]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=301</guid>
		<description><![CDATA[Finding Last line in the text using regular expressions with .net In this regular expressions, we are going to find last line in the text. Regular Expression Pattern .+Z$ A description of the regular expression: Any character, one or more repetitions End of string or before new line at end of string End of line [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/301/finding-last-line-in-the-text-using-regular-expressions-with-net.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
