slice_stringReturns the Python-style slice of the input string.
The resulting string is obtaining by collecting the characters positioned at the indices corresponding to a Python slice [start:stop:stride] of the input string.
stringThe input string.
startThe beginning position of the slice interval.
stopThe ending position of the slice interval.
strideThe stepping of the slice interval.
sliceThe result string slice.