StringExtensionsSubstringPrevious Method
Returns a string consisting of a specified number of characters to the left (previous chars) from the provided startIndex
Namespace: Gemstone.StringExtensionsAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
public static string SubstringPrevious(
this string? value,
int endIndex,
int length
)
<ExtensionAttribute>
Public Shared Function SubstringPrevious (
value As String,
endIndex As Integer,
length As Integer
) As String
public:
[ExtensionAttribute]
static String^ SubstringPrevious(
String^ value,
int endIndex,
int length
)
Gemstone.StringExtensions.StringExtensions.SubstringPrevious = function(value, endIndex, length);
- value String
- The string to process
- endIndex Int32
- The index in value at the end of the desired returned string.
- length Int32
- The number of characters from the endIndex of the string to return
StringA string to the left of
endIndex of length up to
lengthIn 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).