Less 字符串函数

  • 定义和使用

    Less支持以下一些字符串函数-
    • escape
    • e
    • % format
    • replace
    下表描述了上述字符串函数及其说明-
    序号 功能与说明 示例
    1
    escape
    它通过对特殊字符使用URL编码来对字符串或信息进行编码。 您无法编码某些字符,例如,,/? ,@,&,+,〜,! ,$,'和一些可以编码的字符,例如\,#,^,(,),{,},:,>,<,]和[和=。
    escape("Hello!! welcome to Tutorialspoint!")
    它输出转义的字符串为-
    Hello%21%21%20welcome%20to%20Tutorialspoint%21
    2
    e
    这是一个字符串函数,它使用字符串作为参数并返回不带引号的信息。 这是CSS转义,它使用〜“某些内容”转义的值和数字作为参数。
    filter: e("Hello!! welcome to Tutorialspoint!");
    它输出转义的字符串为-
    filter: Hello!! welcome to Tutorialspoint!;
    3
    % format
    此函数格式化字符串。 可以使用以下格式编写-
    %(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
    它用于替换字符串中的文本。 它使用一些参数-
    • string-搜索字符串并替换。
    • pattern-搜索正则表达式模式。
    • replace-替换与模式匹配的字符串。
    • flags-这些是可选的正则表达式标志。
    replace("Welcome, val?", "val\?", "to Tutorialspoint!");
    它将字符串替换-
    "Welcome, to Tutorialspoint!"