Excerpt | ||
---|---|---|
| ||
substring(string, startPosition, endPosition) Returns a portion of the supplied string between specified character positions. |
Function: substring()
Returns a portion of the supplied string between specified character positions.
...
The first, string portion of the file name is variable so we search for the "_" character with the function indexOf, and use the returned value in substring to pull out the date from the file name.
...