Class StringExtension
Extension methods for strings
Inheritance
object
StringExtension
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: ETLBox.Helper
Assembly: ETLBox.dll
Syntax
public static class StringExtension
Methods
ReplaceIgnoreCase(string, string, string)
This replicates the functionality of case-insensitive functionality built into Replace in .Net Core.
Declaration
public static string ReplaceIgnoreCase(this string toSearch, string find, string replace)
Parameters
Type | Name | Description |
---|---|---|
string | toSearch | |
string | find | |
string | replace |
Returns
Type | Description |
---|---|
string | The string with replaced values |