Namespace: DeltaEngine.ExtensionsAssembly: DeltaEngine (in DeltaEngine.dll) Version: 1.1.1.0 (1.1.1)
public static string[] SplitAndTrim(
this string value,
params string[] separators
)
public static string[] SplitAndTrim(
this string value,
params string[] separators
)
<ExtensionAttribute>
Public Shared Function SplitAndTrim (
value As String,
ParamArray separators As String()
) As String()
<ExtensionAttribute>
Public Shared Function SplitAndTrim (
value As String,
ParamArray separators As String()
) As String()
public:
[ExtensionAttribute]
static array<String^>^ SplitAndTrim(
String^ value,
... array<String^>^ separators
)
public:
[ExtensionAttribute]
static array<String^>^ SplitAndTrim(
String^ value,
... array<String^>^ separators
)
static member SplitAndTrim :
value : string *
separators : string[] -> string[]
static member SplitAndTrim :
value : string *
separators : string[] -> string[]
Return Value
Type:
String 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).