Sass String Functions
The string functions are used to manipulate and get information about strings.
Sass strings are 1-based. The first character in a string is at index 1, not 0.
The following table lists all string functions in Sass:
Function | Description & Example |
---|---|
quote(string) | Adds quotes to string, and returns the result.
Example: |
str-index(string, substring) | Returns the index of the first occurrence of the substring within string.
Example: |
str-insert(string, insert, index) | Returns string with insert inserted at the specified index position.
Example: |
str-length(string) | Returns the length of string (in characters).
Example: |
str-slice(string, start, end) | Extracts characters from string; start at start and end at end, and returns the slice.
Example: |
to-lower-case(string) | Returns a copy of string converted to lower case.
Example: |
to-upper-case(string) | Returns a copy of string converted to upper case.
Example: |
unique-id() | Returns a unique randomly generated unquoted string (guaranteed to be unique within the current sass session).
Example: |
unquote(string) | Removes quotes around string (if any), and returns the result.
Example: |