<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Antyss77</title>
    <description>The latest articles on DEV Community by Antyss77 (@antyss77).</description>
    <link>https://dev.to/antyss77</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1045839%2F6f709fc6-4c74-46bb-a967-03ace013a11c.jpeg</url>
      <title>DEV Community: Antyss77</title>
      <link>https://dev.to/antyss77</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/antyss77"/>
    <language>en</language>
    <item>
      <title>* [StringExtension](https://github.com/Antyss77/StringExtension) - A high-performance C# string manipulation library with Unicode-aware operations, casing, validation, linguistics, and zero-allocation implementations where possible.</title>
      <dc:creator>Antyss77</dc:creator>
      <pubDate>Sun, 09 Aug 2026 17:07:04 +0000</pubDate>
      <link>https://dev.to/antyss77/-stringextensionhttpsgithubcomantyss77stringextension-a-high-performance-c-string-3e3a</link>
      <guid>https://dev.to/antyss77/-stringextensionhttpsgithubcomantyss77stringextension-a-high-performance-c-string-3e3a</guid>
      <description>&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
        &lt;div class="c-embed__cover"&gt;
          &lt;a href="https://github.com/Antyss77/StringExtension" class="c-link align-middle" rel="noopener noreferrer"&gt;
            &lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fopengraph.githubassets.com%2F02f2305eb4d0cdda5bde16683d9234e6c6ef94d868c9afce3937366f76f045dd%2FAntyss77%2FStringExtension" height="600" class="m-0" width="1200"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="c-embed__body"&gt;
        &lt;h2 class="fs-xl lh-tight"&gt;
          &lt;a href="https://github.com/Antyss77/StringExtension" rel="noopener noreferrer" class="c-link"&gt;
            GitHub - Antyss77/StringExtension: A C# library that provides utility methods for manipulating strings. · GitHub
          &lt;/a&gt;
        &lt;/h2&gt;
          &lt;p class="truncate-at-3"&gt;
            A C# library that provides utility methods for manipulating strings. - Antyss77/StringExtension
          &lt;/p&gt;
        &lt;div class="color-secondary fs-s flex items-center"&gt;
            &lt;img alt="favicon" class="c-embed__favicon m-0 mr-2 radius-0" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.githubassets.com%2Ffavicons%2Ffavicon.svg" width="32" height="32"&gt;
          github.com
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;


</description>
      <category>csharp</category>
      <category>dotnet</category>
      <category>github</category>
      <category>performance</category>
    </item>
    <item>
      <title>StringExtension - A C# library that provides utility methods for manipulating strings.</title>
      <dc:creator>Antyss77</dc:creator>
      <pubDate>Sun, 09 Aug 2026 14:41:55 +0000</pubDate>
      <link>https://dev.to/antyss77/stringextension-a-c-library-that-provides-utility-methods-for-manipulating-strings-3bcl</link>
      <guid>https://dev.to/antyss77/stringextension-a-c-library-that-provides-utility-methods-for-manipulating-strings-3bcl</guid>
      <description>&lt;p&gt;🚀 &lt;strong&gt;StringExtension has evolved a lot!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I previously shared &lt;a href="https://github.com/Antyss77/StringExtension" rel="noopener noreferrer"&gt;StringExtension&lt;/a&gt;, my open-source C# library for string processing. Also &lt;a href="https://www.nuget.org/packages/String-Extension/" rel="noopener noreferrer"&gt;available on NuGet&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Since then, I've made a &lt;strong&gt;major update&lt;/strong&gt; to the project:&lt;/p&gt;

&lt;p&gt;✨ &lt;strong&gt;New string casing utilities&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;ToPascalCase&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ToCamelCase&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ToSnakeCase&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ToKebabCase&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ToTitleCase&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Slugify&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🌍 &lt;strong&gt;Better Unicode support&lt;/strong&gt;&lt;br&gt;
String classification and casing now operate on Unicode scalar values using .NET &lt;code&gt;Rune&lt;/code&gt;, including characters outside the BMP.&lt;/p&gt;

&lt;p&gt;⚡ &lt;strong&gt;Performance improvements&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;ReadOnlySpan&amp;lt;char&amp;gt;&lt;/code&gt; overloads&lt;/li&gt;
&lt;li&gt;reduced allocations&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;ArrayPool&lt;/code&gt; for large buffers&lt;/li&gt;
&lt;li&gt;optimized implementations&lt;/li&gt;
&lt;li&gt;performance benchmarks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🏗️ &lt;strong&gt;Cleaner architecture&lt;/strong&gt;&lt;br&gt;
String operations are now organized into dedicated namespaces such as &lt;code&gt;Validation&lt;/code&gt;, &lt;code&gt;Linguistics&lt;/code&gt; and &lt;code&gt;Casing&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;The project also has unit tests, benchmarks, and is now targeting &lt;strong&gt;.NET 10&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;I'm still improving it and would love to see more developers discover, use and contribute to it.&lt;/p&gt;

&lt;p&gt;⭐ If you find it useful, a GitHub star would really help the project gain visibility!&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://github.com/Antyss77/StringExtension" rel="noopener noreferrer"&gt;https://github.com/Antyss77/StringExtension&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  csharp #dotnet #opensource #nuget #stringmanipulation
&lt;/h1&gt;

</description>
      <category>csharp</category>
      <category>dotnet</category>
      <category>opensource</category>
      <category>productivity</category>
    </item>
    <item>
      <title>String manipulation with StringExtension in C#</title>
      <dc:creator>Antyss77</dc:creator>
      <pubDate>Wed, 15 Mar 2023 14:50:38 +0000</pubDate>
      <link>https://dev.to/antyss77/string-manipulation-with-strings-in-c-4o0j</link>
      <guid>https://dev.to/antyss77/string-manipulation-with-strings-in-c-4o0j</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/Antyss77/StringExtension" rel="noopener noreferrer"&gt;StringExtension&lt;/a&gt; is a string processing library for the C# programming language. It provides features to manipulate and transform strings in a simple and efficient way. The library is open-source and comes with unit tests and performance tests. It is designed to be easily integrated into your existing projects. Feel free to contribute to the project with ideas or development expertise. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl9dfbxmy2un94jra29z9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl9dfbxmy2un94jra29z9.png" alt="Preview of the StringExtension project on Github" width="800" height="151"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you don't have any ideas to contribute to the project you can follow me and give a star to the project that will make it known and move the project forward, thanks!&lt;/p&gt;

</description>
      <category>csharp</category>
      <category>beginners</category>
      <category>productivity</category>
      <category>codenewbie</category>
    </item>
  </channel>
</rss>
