Substring
The Substring function returns a substring from a specified string by using index positions.
Index positions start at 0.
Syntax
The Substring function
has the following syntax:
String = Substring(Expression, Start, End)Parameters
The Substring function
has the following parameters.
Parameter |
Format |
Description |
|---|---|---|
|
String |
String to search for the substring. |
|
Integer |
Starting character position of the substring. |
|
Integer |
Ending character position of the substring, plus one. |
Return value
The substring returned by index positions.
Example
The following example shows how to return a substring using index positions.
MyString = "This is a test.";
MySubstring = Substring(MyString, 0, 4);
Log(MySubstring);This example prints the following message to the policy log:
Parser Log: This