StringsSubstring(String, Int32) Method

Get a substring from the indicated position of a text.

Definition

Namespace: Aliquo.Core
Assembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
C#
public static string Substring(
	string text,
	int startIndex
)

Parameters

text  String
Text used to get the substring.
startIndex  Int32
Starting index to get the substring.

Return Value

String
String with the substring from start position.

Empty if the text is empty.

See Also