@CalcMgrSubstring

Purpose:

Returns a new string that is a substring of this string.

The substring begins at startIndex and extends to the character at index endIndex - 1. Thus the length of the substring is endIndex-startIndex.

If the endIndex is less than zero, then endIndex will be the index of the last character.

Syntax:

Java Class: com.hyperion.calcmgr.common.cdf.StringFunctions.substring(String,int,int)

CDF Spec: @CalcMgrSubstring(text, startIndex, endIndex)