strSubstring(text,start,end)¶
Definition¶
String strSubstring(String text, Number start, Number end)
Description¶
Returns a substring from a string, based on the specified start and end. If start or charsToReplace extend beyond string length, they will be set to string length.
Parameter Definition¶
Name | Type | Description |
---|---|---|
text | String | The base string to get a substring from |
start | Number | zero indexed start of substring to return |
end | Number | zoro indexed end of substring to return |