StringsSubstring(String, Int32) Method
Get a substring from the indicated position of a text.
Namespace: Aliquo.CoreAssembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
public static string Substring(
string text,
int startIndex
)
Public Shared Function Substring (
text As String,
startIndex As Integer
) As String
- text String
- Text used to get the substring.
- startIndex Int32
- Starting index to get the substring.
StringString with the substring from start position.
Empty if the text is empty.