A collection of utilities for working with strings in .NET.
This class allows you to format values in a way similar to String.Format
, but with named placeholders instead of numbered placeholders. The values to format are passed as a simple object (anonymous types are allowed of course). Format specifiers can be used in the same way as with String.Format
. Here's an example:
static void Main()
{
var joe = new Person { Name = "Joe", DateOfBirth = new DateTime(1980, 6, 22) };
string text = StringTemplate.Format("{Name} was born on {DateOfBirth:D}", joe);
Console.WriteLine(text); // Prints "Joe was born on Sunday, 22 June 1980"
}
Same as the methods of the same name in the String
class, but as extension methods, which makes them more convenient to use.
"".IsNullOrEmpty() // true
" ".IsNullOrWhiteSpace() // true
string[] words = { "hello", "world" };
words.Join(" ") // "hello world"
Lazily enumerates all lines in a string, making it easy to apply transformations to each line using Linq, for instance.
public string IndentAllLines(string text, string indent = " ")
{
indentedLines = text.GetLines().Select(line => indent + line);
return string.Join(Environment.NewLine, indentedLines);
}
Returns a string containing a specified number of characters from the left or right side of a string. These methods are shortcuts for common use cases of Substring
, and behave in the same way (so they will throw if you try to get more characters than the length of the string).
"hello".Left(2) // "he"
"hello".Right(3) // "llo"
Returns a string truncated to the specified number of characters. Similar to Left
, but doesn't throw if the string is shorter than the specified length.
"hello".Truncate(2) // "he"
"hello".Truncate(8) // "hello"
Capitalizes a string by making its first character uppercase.
"hello".Capitalize() // "Hello"
Checks if a string matches the specified wildcard pattern (supports *
for any number of characters, and ?
for exactly one character).
if (fileName.MatchesWildCard("foobar.*.log"))
{
...
}
Truncates a string to the specified length, replacing the extra characters with an ellipsis (three dots) or with the specified ellipsis string. The specified length includes the length of the ellipsis.
"hello world".Ellipsis(8) // "hello..."
"hello world".Ellipsis(20) // "hello world"
Checks if the specified string contains the specified substring, using the specified comparison type (Ordinal
, CurrentCultureIgnoreCase
, etc). Unlike the String.StartsWith
and String.EndsWith
methods, the String.Contains
method doesn't have an overload to specify the comparison type; this extension method fills that gap.
"Hello World".Contains("world", StringComparison.CurrentCultureIgnoreCase) // true
Replaces a single character at the specified position with the specified replacement character.
"hello world".ReplaceAt(0, 'j') // "jello world"