Skip to content

Change string comparisons to be case insensitive.

License

Notifications You must be signed in to change notification settings

justinhachemeister/Caseless

 
 

Repository files navigation

Chat on Gitter NuGet Status

This is an add-in for Fody

Icon

Change string comparisons to be case insensitive.

Introduction to Fody

Usage

See also Fody usage.

NuGet installation

Install the Caseless.Fody NuGet package and update the Fody NuGet package:

PM> Install-Package Caseless.Fody
PM> Update-Package Fody

The Update-Package Fody is required since NuGet always defaults to the oldest, and most buggy, version of any dependency.

Add to FodyWeavers.xml

Add <Caseless/> to FodyWeavers.xml

<?xml version="1.0" encoding="utf-8" ?>
<Weavers>
  <Caseless/>
</Weavers>

Your Code

public bool Foo()
{
    var x = "a";
    var y = "A";
    return x == y;
}

What gets compiled

public bool Foo()
{
    var x = "a";
    var y = "A";
    return string.Equals(x, y, StringComparison.OrdinalIgnoreCase);
}

Converted Methods

The following string methods get converted to their StringComparison equivalents.

What about String.Replace

This is because there is no overload for a case insensitive replace in the .net framework.

Here is an extension method to achieve it manually. Take from this StackOverflow answer

public static class StringExtensions
{
    public static StringComparison DefaultComparison = StringComparison.OrdinalIgnoreCase;
    public static string ReplaceCaseless(this string str, string oldValue, string newValue)
    {
        var sb = new StringBuilder();

        var previousIndex = 0;
        var index = str.IndexOf(oldValue, DefaultComparison);
        while (index != -1)
        {
            sb.Append(str.Substring(previousIndex, index - previousIndex));
            sb.Append(newValue);
            index += oldValue.Length;

            previousIndex = index;
            index = str.IndexOf(oldValue, index, DefaultComparison);
        }
        sb.Append(str.Substring(previousIndex));

        return sb.ToString();
    }
}

Default String Comparison

If your don't want to use StringComparison.OrdinalIgnoreCase then you can configure the addin inside the FodyWeavers.xml file.

For example if you want to use StringComparison.InvariantCultureIgnoreCase then add the following to FodyWeavers.xml.

<?xml version="1.0" encoding="utf-8" ?>
<Weavers>
    <Caseless StringComparison="InvariantCultureIgnoreCase"/>
</Weavers>

Icon

Aardvark designed by N J MacNeil from The Noun Project

About

Change string comparisons to be case insensitive.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%