sString | (String) Source string expression. |
---|---|
nStart | (Long) Index in the string where the requested substring is to start.
0 = from beginning of the string.
If this parameter is negative, then it specifies the position from the end of the string. It means that the number -1 indicates the last character, -2 the one before last character, etc. |
nEnd | [optional] (Long) Index in the string that follows right after the substring ends.
If not set, then the substring will contain all characters up to the end of the string.
If the parameter is negative, then the characters are counted from the end of the string. |
var sSub = Pm.StringSub("x100abc", 1, 4);
// sSub contains "100"