str_index($string, $substring)
Returns the index of the first occurrence of $substring
in $string
. If there is no such occurrence, returns null
.
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.