Less 字符串函數
描述
本節將介紹 Less 字符串函數。
Less支持以下列出的一些字符串函數:
逃逸
e
%格式
更換
下表描述了上述字符串函數及其說明。
S.N. | 類型及描述 | 例子 |
---|---|---|
1 | Escape 它通過對特殊字符使用URL編碼來對字符串或信息進行編碼。您無法編碼一些字符,例如,,/,?,@,&,+,?,!,$,\'和您可以編碼的一些字符,例如\\,#,> ^,(,),{,},:>,>,,],[和=。 | escape("Hello!! welcome to Tutorialspoint!") 它輸出轉義字符串為: Hello%21%21%20welcome%20to%20Tutorialspoint%21 |
2 | e 它是一個字符串函數,它使用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""; |
4 | replace 它用于替換字符串中的文本。 它使用一些參數:
| replace("Welcome, val?", "val\?", "to Tutorialspoint!"); 它將字符串替換為: "Welcome, to Tutorialspoint!" |