-
Notifications
You must be signed in to change notification settings - Fork 26
Substring
Shaun Lawrence edited this page Nov 2, 2022
·
3 revisions
Returns a section of the supplied text
between the startIndex
and then using the length
.
Substring(text, startIndex, length)
The string
text containing the section to return.
Type | string |
Required | Yes |
The starting position of the text to return.
Type | int |
Required | Yes |
The length from the starting position to return.
Type | int |
Required | Yes |
Substring("Read between the lines", 13, 3)
Returns the
in this example.
- AddDays
- AddHours
- AddMilliseconds
- AddMinutes
- AddMonths
- AddSeconds
- AddYears
- DayOf
- HourOf
- MillisecondOf
- MinuteOf
- MonthOf
- SecondOf
- YearOf
- DaysBetween
- HoursBetween
- MillisecondsBetween
- MinutesBetween
- SecondsBetween