字符串函数
字符串函数用于处理和获取有关字符串的信息。
Sass 字符串基于 1。 字符串中的第一个字符位于索引 1,而不是 0。
下表列出了 Sass 中的所有字符串函数:
函数 |
描述 & 示例 |
quote(string) |
给字符串加上引号,并返回结果。
示例:
quote(Hello world!)
返回结果: "Hello world!"
|
str-index(string, substring) |
返回字符串中子字符串首次出现的索引。
示例:
str-index("Hello world!", "H")
返回结果: 1
|
str-insert(string, insert, index) |
返回在指定索引位置插入了 insert 的字符串。
示例:
str-insert("Hello world!", " wonderful", 6)
返回结果: "Hello wonderful world!"
|
str-length(string) |
返回字符串的长度(以字符为单位)。
示例:
str-length("Hello world!")
返回结果: 12
|
str-slice(string, start, end) |
从字符串中提取字符;从头开始,从头结束,然后返回切片。
示例:
str-slice("Hello world!", 2, 5)
返回结果: "ello"
|
to-lower-case(string) |
返回转换为小写的字符串的副本。
示例:
to-lower-case("Hello World!")
返回结果: "hello world!"
|
to-upper-case(string) |
返回转换为大写字母的字符串的副本。
示例:
to-upper-case("Hello World!")
返回结果: "HELLO WORLD!"
|
unique-id() |
返回一个唯一的随机生成的无引号的字符串(保证是在当前 sass 会话中唯一)。
示例:
unique-id()
返回结果: tyghefnsv
|
unquote(string) |
删除 string 周围的引号(如果有),并返回结果。
示例:
unquote("Hello world!")
返回结果: Hello world!
|