Timestream.substring
- Timestream.substring(start=None, end=None)
-
Return a Timestream with a substring between the start and end indices.
- Parameters:
-
start (Optional[int], default:
None
)The inclusive index to start at.
None
indicates the beginningof the string. Negative indices count backwards from the end of
the string.
end (Optional[int], default:
None
)The exclusive index to end at.
None
indicates the length ofthe string. Negative indices count backwards from the end of
the string.
NotesReturns the substring starting at
start
(inclusive) up to but not including theend
. If the input isnull
, returnsnull
. Ifend
>start
an empty string is returned.