Search

Slice

Last Updated: Dec 10, 2020

Articles

This function is deprecated - Please use substring function

Use this function to slice the input string.

Syntax

Slice (input, start_index, end_index)

Parameters

Input Parameter Name Description
input input string
start_index starting index of a string
end_index end index of a string

Returns

Return value Description
text Returns the sliced string

Sample

  1. Slice (JIFFY, 1, 3) = JIF
  2. Slice (JIFFY, 2, 3) = IF

To view all the Text functions, click here.

Did you find what you were looking for?