模板:Trim quotes
跳至導覽
跳至搜尋
File:Test Template Info-Icon - Version (2).svg 模板文件[檢視] [編輯] [歷史] [清除快取]
頁面Module:Message box/mbox.css沒有內容。| File:Lua-Logo.svg | 此模板使用Lua語言: |
This template trims matched pairs of leading and trailing single (') and double (") quotes and whitespace from a string. The string should be passed as the first unnamed parameter or using |1= or |s= if your string contains any = signs.
參數及使用方法[編輯]
{{trim quotes|text}} = text with any leading or trailing quotes removed (as long as text doesn't contain any = signs).
{{trim quotes|1=text}} or {{trim quotes|s=text}} = text with any leading or trailing square brackets removed.
範例[編輯]
- <code>
{{trim quotes|1= 'abc' }}</code> producesabc.
- <code>
{{trim quotes|1= ""abc's""}}</code> producesabc's
- <code>
{{trim quotes|1= This is a "quote"}}</code> producesThis is a "quote"(since the quotes aren't at the beginning and end of the string)
模板編輯說明[編輯]
<templatedata> {
"description": "The template trims matched pairs of leading and trailing single and double quotes from a string.",
"params": {
"1": {
"label": "String",
"description": "The string to be trimmed",
"type": "string",
"required": true
}
}
} </templatedata>
參見[編輯]
- {{trim}}
package.lua第80行Lua錯誤:module 'Module:Navbar/configuration' not found