- 语言特性
- Less - 嵌套规则
- Less - 嵌套指令和冒泡
- Less - 操作符
- Less - 转义
- Less - 函数
- Less - 命名空间和访问器
- Less - 作用域
- Less - 注释
- Less - 导入
- Less - 变量
- Less - 扩展
- Less - 混合
- Less - 参数化混合
- Less - 混合作为函数
- Less - 向混合传递规则集
- Less - 导入指令
- Less - 导入选项
- Less - 混合守卫
- Less - CSS 守卫
- Less - 循环
- Less - 合并
- Less - 父选择器
- 函数
- Less - 杂项函数
- Less - 字符串函数
- Less - 列表函数
- Less - 数学函数
- Less - 类型函数
- Less - 颜色定义函数
- Less - 颜色通道函数
- Less - 颜色操作
- Less - 颜色混合函数
- 用法
- Less - 命令行用法
- 在浏览器中使用 Less
- Less - 浏览器支持
- Less - 插件
- Less - 程序化用法
- Less - 在线编译器
- Less - GUI
- Less - 编辑器和插件
- Less - 第三方编译器
- Less - 框架
- Less 有用资源
- Less - 快速指南
- Less - 有用资源
- Less - 讨论
LESS - 字符串函数
描述
Less 支持以下列出的某些字符串函数:
- 转义
- e
- % 格式化
- 替换
下表描述了上述字符串函数及其描述。
序号 | 类型和描述 | 示例 |
---|---|---|
1 | 转义 它使用 URL 编码对特殊字符进行编码字符串或信息。您无法对某些字符进行编码,例如 ,、/、?、@、&、+、~、!、$、',以及您可以对某些字符进行编码,例如 \、#、^、(、)、{、}、:、>、<、]、[ 和 =。 |
escape("Hello!! welcome to Tutorialspoint!") 它输出转义后的字符串为: Hello%21%21%20welcome%20to%20Tutorialspoint%21 |
2 | e 这是一个字符串函数,它使用字符串作为参数并返回不带引号的信息。它是一个 CSS 转义,它使用 ~"some content" 转义的值和数字作为参数。 |
filter: e("Hello!! welcome to Tutorialspoint!"); 它输出转义后的字符串为: filter: Hello!! welcome to Tutorialspoint!; |
3 | % 格式化 此函数格式化字符串。它可以用以下格式编写: %(string, arguments ...) |
format-a-d: %("myvalues: %a myfile: %d", 2 + 3, "mydir/less_demo.less"); 它输出格式化的字符串为: format-a-d: "myvalues: 5 myfile: "mydir/less_demo.less""; |
4 | 替换 它用于替换字符串中的文本。它使用一些参数:
|
replace("Welcome, val?", "val\?", "to Tutorialspoint!"); 它替换字符串为: "Welcome, to Tutorialspoint!" |
广告