<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com - Stories tagged with string</title>
    <description>the latest stories tagged with 'string' from DotNetKicks.com</description>
    <link>http://www.dotnetkicks.com/</link>
    <language>en-us</language>
    <copyright>Atweb Publishing Ltd.</copyright>
    <docs>http://backend.userland.com/rss</docs>
    <generator>DotNetKicks.com - .NET links, community driven</generator>
    <ttl>30</ttl>
    <item>
      <title>30 Common String Operations in C# and VB.NET - Part II</title>
      <description>In the previous article, 30 Common String Operations in C# and VB.NET - Part I, we explored 15 common String operations while working with the String class. In Part II of the article, we will continue with the series and cover 15 more. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetcurry.com%2fShowArticle.aspx%3fID%3d190"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetcurry.com%2fShowArticle.aspx%3fID%3d190" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/clr/30_Common_String_Operations_in_C_and_VB_NET_Part_II</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/clr/30_Common_String_Operations_in_C_and_VB_NET_Part_II</guid>
      <pubDate>Wed, 27 Aug 2008 08:01:02 GMT</pubDate>
    </item>
    <item>
      <title>30 Common String Operations in C# and VB.NET - Part I </title>
      <description>This article compiles some common String operations that we encounter while working with the String class. In Part I, 15 common string operations have been covered .
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetcurry.com%2fShowArticle.aspx%3fID%3d189"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetcurry.com%2fShowArticle.aspx%3fID%3d189" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/30_Common_String_Operations_in_C_and_VB_NET_Part_I</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/30_Common_String_Operations_in_C_and_VB_NET_Part_I</guid>
      <pubDate>Mon, 25 Aug 2008 11:01:08 GMT</pubDate>
    </item>
    <item>
      <title>C# String Theory</title>
      <description>This article shows the differences between string versus String versus StringBuilder. It details when and how to use the C# String and StringBuilder classes.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fen.csharp-online.net%2fCSharp_String_Theory"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fen.csharp-online.net%2fCSharp_String_Theory" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/C_String_Theory</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/C_String_Theory</guid>
      <pubDate>Wed, 09 Jul 2008 06:17:32 GMT</pubDate>
    </item>
    <item>
      <title>Setting StringBuilder's Initial Capacity for Extreme Performance</title>
      <description>You must have come across plenty of articles on the internet which talk about using the StringBuilder class when computing large strings for performance gains. Nothing wrong with that. However I have not seen many coders using the Initial Capacity constructor of the StringBuilder class which can further result in EXTREME PERFORMANCE. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fcodeforeternity.com%2fblogs%2ftechnology%2farchive%2f2008%2f05%2f08%2fusing-initial-capacity-constructor-of-stringbuilder-for-extreme-performace.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fcodeforeternity.com%2fblogs%2ftechnology%2farchive%2f2008%2f05%2f08%2fusing-initial-capacity-constructor-of-stringbuilder-for-extreme-performace.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Setting_StringBuilder_s_Initial_Capacity_for_Extreme_Performance</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Setting_StringBuilder_s_Initial_Capacity_for_Extreme_Performance</guid>
      <pubDate>Thu, 08 May 2008 13:28:42 GMT</pubDate>
    </item>
    <item>
      <title>How to: Optimize the memory usage with strings</title>
      <description>System.String type is used in any .NET application. We have strings as: names, addresses, descriptions, error messages, warnings or even application settings. Each application has to create, compare or format string data. Considering the immutability and the fact that any object can be converted to a string, all the available memory can be swallowed by a huge amount of unwanted string duplicates or unclaimed string objects. Now let's see how a string object should be handled to preserve memory. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnetfacts.blogspot.com%2f2008%2f03%2fhow-to-optimize-memory-usage-with.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnetfacts.blogspot.com%2f2008%2f03%2fhow-to-optimize-memory-usage-with.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/How_to_Optimize_the_memory_usage_with_strings</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/How_to_Optimize_the_memory_usage_with_strings</guid>
      <pubDate>Mon, 31 Mar 2008 10:16:03 GMT</pubDate>
    </item>
    <item>
      <title>How to: Optimize the strings' comparison</title>
      <description>Due to my web research I found some useful tips about how to compare two strings making full use of performance in .NET Framework. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnetfacts.blogspot.com%2f2008%2f03%2fhow-to-optimize-strings-comparison.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnetfacts.blogspot.com%2f2008%2f03%2fhow-to-optimize-strings-comparison.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/How_to_Optimize_the_strings_comparison</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/How_to_Optimize_the_strings_comparison</guid>
      <pubDate>Sat, 29 Mar 2008 10:15:40 GMT</pubDate>
    </item>
    <item>
      <title>When string.ToLower() is Evil</title>
      <description>Did you know how evil string.ToLower() can sometimes be? See an example when string.ToLower() is definitely not an option.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fvadmyst.blogspot.com%2f2008%2f02%2fwhen-stringtolower-is-evil.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fvadmyst.blogspot.com%2f2008%2f02%2fwhen-stringtolower-is-evil.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/When_string_ToLower_is_Evil</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/When_string_ToLower_is_Evil</guid>
      <pubDate>Sat, 02 Feb 2008 17:16:01 GMT</pubDate>
    </item>
    <item>
      <title>Extending the string object in c#</title>
      <description>Four methods to extend your string, ToCamel(), Capitalize(), CapitalizeAll() and ToPascal(). &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blog.latrompa.com%2f%3fp%3d40"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blog.latrompa.com%2f%3fp%3d40" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Extending_the_string_object_in_c</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Extending_the_string_object_in_c</guid>
      <pubDate>Mon, 07 Jan 2008 22:31:04 GMT</pubDate>
    </item>
    <item>
      <title>String Concatenation vs Memory Allocation</title>
      <description>Over the years, plenty has been written about string performance, lots of comparisons between String.Concat and StringBuilder. Today I decided to do some of my own research into the subject and contribute to the knowledge already out there. More specifically, I'll be taking a look at the memory usage for various concatenation methods. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.cumps.be%2fstring-concatenation-vs-memory-allocation%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.cumps.be%2fstring-concatenation-vs-memory-allocation%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/clr/String_Concatenation_vs_Memory_Allocation</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/clr/String_Concatenation_vs_Memory_Allocation</guid>
      <pubDate>Sat, 22 Sep 2007 14:46:02 GMT</pubDate>
    </item>
    <item>
      <title>StringBuilder is not always faster</title>
      <description>Here is something you may not know about string concatenation: StringBuilder is not always faster. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.chinhdo.com%2fchinh%2fblog%2f20070224%2fstringbuilder-is-not-always-faster%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.chinhdo.com%2fchinh%2fblog%2f20070224%2fstringbuilder-is-not-always-faster%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/StringBuilder_is_not_always_faster</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/StringBuilder_is_not_always_faster</guid>
      <pubDate>Tue, 18 Sep 2007 05:01:02 GMT</pubDate>
    </item>
    <item>
      <title>3 More Useful VB.NET String Functions</title>
      <description>Features a How-To convert string to stream and back again, how to use the String.Compare function and a function to get the word count of a string &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fvbnotebookfor.net%2f2007%2f09%2f07%2f3-more-useful-vbnet-string-functions%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fvbnotebookfor.net%2f2007%2f09%2f07%2f3-more-useful-vbnet-string-functions%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/vbnet/3_More_Useful_VB_NET_String_Functions</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/vbnet/3_More_Useful_VB_NET_String_Functions</guid>
      <pubDate>Fri, 07 Sep 2007 17:54:01 GMT</pubDate>
    </item>
    <item>
      <title>String Formatting in C#</title>
      <description>A very handy guide to formatting strings in C#. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.stevex.net%2findex.php%2fstring-formatting-in-csharp%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.stevex.net%2findex.php%2fstring-formatting-in-csharp%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/String_Formatting_in_C_1</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/String_Formatting_in_C_1</guid>
      <pubDate>Fri, 27 Jul 2007 00:31:01 GMT</pubDate>
    </item>
    <item>
      <title>Sql Server: IsNullOrEmpty function </title>
      <description>A familiar C# function in T-SQL. 
Usefull to keep it handy &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.sqlteam.com%2fmladenp%2farchive%2f2007%2f06%2f13%2f60231.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.sqlteam.com%2fmladenp%2farchive%2f2007%2f06%2f13%2f60231.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/Sql_Server_IsNullOrEmpty_function</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/Sql_Server_IsNullOrEmpty_function</guid>
      <pubDate>Fri, 15 Jun 2007 08:01:01 GMT</pubDate>
    </item>
    <item>
      <title>Custom string formatting in .Net</title>
      <description>Recently, while working on a project, I came across the need to format the phone number supplied as string in the standard U.S. phone format(i.e. 1234567890 should be displayed as (123) 456-7890). The phone number was being fetched as a string from the database..... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2frajkwatra.blogspot.com%2f2007%2f05%2fcustom-string-formatting-in-net.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2frajkwatra.blogspot.com%2f2007%2f05%2fcustom-string-formatting-in-net.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Custom_string_formatting_in_Net</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Custom_string_formatting_in_Net</guid>
      <pubDate>Fri, 25 May 2007 03:31:01 GMT</pubDate>
    </item>
    <item>
      <title>Converting DateTime to String and back.</title>
      <description>How to convert to a DateTime to a String and back, with out loosing any of those pesky milliseconds. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww2.john.rummellcc.com%2f2007%2f05%2fconverting-datetime-to-string-and-back.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww2.john.rummellcc.com%2f2007%2f05%2fconverting-datetime-to-string-and-back.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/other/Converting_DateTime_to_String_and_back</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/other/Converting_DateTime_to_String_and_back</guid>
      <pubDate>Mon, 21 May 2007 05:22:15 GMT</pubDate>
    </item>
    <item>
      <title>Reverse a string in C# and bitwise XOR </title>
      <description>Showing the principle of XOR with reversing a string in C#. It's also pretty fast. 

Because bitwise operations should be common knowledge for every developer out there. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.sqlteam.com%2fmladenp%2farchive%2f2006%2f03%2f19%2f9350.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.sqlteam.com%2fmladenp%2farchive%2f2006%2f03%2f19%2f9350.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Reverse_a_string_in_C_and_bitwise_XOR</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Reverse_a_string_in_C_and_bitwise_XOR</guid>
      <pubDate>Sat, 28 Apr 2007 13:30:18 GMT</pubDate>
    </item>
    <item>
      <title>How to find a string between two begin and end strings in C#</title>
      <description>One common requirements especially when doing screen scrapping is to find strings contained between html tags, or other strings. Regular Expressions provide a powerfull way to do so, but are initially intimidating for a beginner programmer.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.mycsharpcorner.com%2fPost.aspx%3fpostID%3d15"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.mycsharpcorner.com%2fPost.aspx%3fpostID%3d15" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/How_to_find_a_string_between_two_begin_and_end_strings_in_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/How_to_find_a_string_between_two_begin_and_end_strings_in_C</guid>
      <pubDate>Sat, 07 Apr 2007 16:01:36 GMT</pubDate>
    </item>
    <item>
      <title>Wordwrapping in C#</title>
      <description>Taking a block of text, and word-wrap it at a specific line length.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fhonestillusion.com%2fblogs%2fblog_0%2farchive%2f2006%2f10%2f06%2fWordwrapping-in-C_2300_.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fhonestillusion.com%2fblogs%2fblog_0%2farchive%2f2006%2f10%2f06%2fWordwrapping-in-C_2300_.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Wordwrapping_in_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Wordwrapping_in_C</guid>
      <pubDate>Sun, 18 Feb 2007 06:46:02 GMT</pubDate>
    </item>
    <item>
      <title>.NET Format String Quick Reference/Cheat Sheet</title>
      <description>All standard and custom DateTime and number format strings (for use with String.Format(), .ToString(), etc) in one handy document. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjohn-sheehan.com%2fblog%2findex.php%2fnet-cheat-sheets%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjohn-sheehan.com%2fblog%2findex.php%2fnet-cheat-sheets%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/NET_Format_String_Quick_Reference_Cheat_Sheet</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/NET_Format_String_Quick_Reference_Cheat_Sheet</guid>
      <pubDate>Fri, 05 Jan 2007 19:31:01 GMT</pubDate>
    </item>
    <item>
      <title> C# String Generation with String.Format</title>
      <description> The twentieth part of the C# Fundamentals tutorial adds to the previous examination of conversion between numeric and string data. This article describes the Format method of the String class that allows generation of strings containing text and numbers. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fStringFormat.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fStringFormat.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/C_String_Generation_with_String_Format</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/C_String_Generation_with_String_Format</guid>
      <pubDate>Sun, 17 Dec 2006 05:46:16 GMT</pubDate>
    </item>
    <item>
      <title>C# String Testing Functions</title>
      <description>The twenty-fourth part of the C# Fundamentals tutorial completes the initial examination of the string manipulation functionality provided by the String class.  This article investigates methods available for testing the contents of strings. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fCSharpStringTesting.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fCSharpStringTesting.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/C_String_Testing_Functions</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/C_String_Testing_Functions</guid>
      <pubDate>Mon, 11 Dec 2006 14:35:08 GMT</pubDate>
    </item>
    <item>
      <title>C# Basic String Operators</title>
      <description>The seventeenth part of the C# Fundamentals tutorial looks at the use of the basic operators used earlier in the tutorial and how they can be applied to the string data type.  These operators form the starting knowledge of C# string manipulation. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fCSharpBasicStringOps.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fCSharpBasicStringOps.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/C_Basic_String_Operators</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/C_Basic_String_Operators</guid>
      <pubDate>Mon, 11 Dec 2006 13:06:01 GMT</pubDate>
    </item>
    <item>
      <title>Concatenating Delimited Strings With Generic Delegates</title>
      <description>Demonstrates the use of the Converter generic delegate to create a generic method to create a delimited string from a collection of objects. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fhaacked.com%2farchive%2f2006%2f11%2f24%2fConcatenating_Delimited_Strings_With_Generic_Delegates.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fhaacked.com%2farchive%2f2006%2f11%2f24%2fConcatenating_Delimited_Strings_With_Generic_Delegates.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Concatenating_Delimited_Strings_With_Generic_Delegates</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Concatenating_Delimited_Strings_With_Generic_Delegates</guid>
      <pubDate>Wed, 29 Nov 2006 06:01:01 GMT</pubDate>
    </item>
    <item>
      <title>Simple String Manipulation Functions</title>
      <description>The twenty-second part of the C# Fundamentals tutorial continues the examination of the string manipulation functionality provided by the String class.  This article investigates some of the simple methods available to manipulate the text of a string. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fSimpleStringManipulation.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fSimpleStringManipulation.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Simple_String_Manipulation_Functions</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Simple_String_Manipulation_Functions</guid>
      <pubDate>Mon, 20 Nov 2006 15:59:28 GMT</pubDate>
    </item>
    <item>
      <title>String.Format() and StringBuilder</title>
      <description>This article looks at the potential performance issues of String.Format() when used with StringBuilder. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdiditwith.net%2fPermaLink%2cguid%2ce62b5427-f447-4f04-a139-17cd3bbb24ed.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdiditwith.net%2fPermaLink%2cguid%2ce62b5427-f447-4f04-a139-17cd3bbb24ed.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/String_Format_and_StringBuilder</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/String_Format_and_StringBuilder</guid>
      <pubDate>Tue, 21 Nov 2006 06:01:01 GMT</pubDate>
    </item>
  </channel>
</rss>