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

代替

它用于替换字符串中的文本。它使用一些参数 -

  • string - 它搜索字符串并替换。

  • pattern - 它搜索正则表达式模式。

  • replacement - 它替换与模式匹配的字符串。

  • flags - 这些是可选的正则表达式标志。

replace("Welcome, val?", "val\?", 
"to Tutorialspoint!");

它将字符串替换为 -

"Welcome, to Tutorialspoint!"