欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

Less 字符串函數


描述

本節將介紹 Less 字符串函數。

Less支持以下列出的一些字符串函數:

  • 逃逸

  • e

  • %格式

  • 更換

下表描述了上述字符串函數及其說明。

S.N.類型及描述例子
1Escape

它通過對特殊字符使用URL編碼來對字符串或信息進行編碼。您無法編碼一些字符,例如/@&+?$\'和您可以編碼的一些字符,例如\\#> ^(){}:>,>][=
  
escape("Hello!! welcome to Tutorialspoint!")

它輸出轉義字符串為:

Hello%21%21%20welcome%20to%20Tutorialspoint%21
2e

它是一個字符串函數,它使用string作為參數,并返回不帶引號的信息。它是一個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"";
4replace
它用于替換字符串中的文本。 它使用一些參數:
  • string:它搜索字符串并替換。

  • pattern:它搜索正則表達式模式。

  • replacement:它替換與模式匹配的字符串。

  • flags:這些是可選的正則表達式標志。

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

它將字符串替換為:

"Welcome, to Tutorialspoint!"