slice(<Text>, <Start Position>, <Character Count>) : Text
The slice function is used to retrieve characters from the specified text parameter, from the start character position till the specified length (character count).
slice("abcdefg", 1, 3) => "bcd"
slice("abcdefg", 0, 2) => "ab"
Learn more about how you can get started using the Formula Field.
Type above and the results will be displayed here.