str_slice($string, $start-at, $end-at:-1)
Extracts a substring from $string
. The substring will begin at index $start-at
and ends at index $end-at
.
Note that unlike some languages, the first character in a Sass string is number 1, the second number 2, and so forth.
Please login to continue.