-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Strings_StringExtensions_TrimPrefix_1
Andrew Koryavchenko edited this page Jun 17, 2018
·
6 revisions
Trims str prefix if it equals to prefix.
Namespace: CodeJam.Strings
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static string TrimPrefix(
this string str,
string prefix,
IEqualityComparer<string> comparer
)
VB
<ExtensionAttribute>
Public Shared Function TrimPrefix (
str As String,
prefix As String,
comparer As IEqualityComparer(Of String)
) As String
F#
[<ExtensionAttribute>]
static member TrimPrefix :
str : string *
prefix : string *
comparer : IEqualityComparer<string> -> string
- str
- Type: System.String
String to trim. - prefix
- Type: System.String
Prefix to trim. - comparer
- Type: System.Collections.Generic.IEqualityComparer(String)
Comparer to compare value of prefix.
Type: String
Trimmed str, or original str if prefix not exists.
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).
StringExtensions Class
TrimPrefix Overload
CodeJam.Strings Namespace