Substring - Gnorion/BizVR GitHub Wiki

Purpose

This method returns a substring from a string.

Syntax

Substring(source, start, len)

Notes

If you do not specify len, the substring contains the characters from start to the end of the string.

Examples

The following is an example of the Substring Method:

string1 = SubString(long_str,1,10)
string2 = SubString(long_str,11)