StringExtensionsStripSuffixes Method

Strips specific suffixes from the string.

Definition

Namespace: DotMake.CommandLine
Assembly: DotMake.CommandLine (in DotMake.CommandLine.dll) Version: 1.8.8
C#
public static string StripSuffixes(
	this string value,
	IEnumerable<string> suffixes,
	bool ignoreCase = true
)

Parameters

value  String
A string instance.
suffixes  IEnumerableString
Suffix strings to remove.
ignoreCase  Boolean  (Optional)
Whether to ignore case.

Return Value

String
A new String instance.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also