模板:Trim quotes/doc
外观
此页面是Template:Trim quotes的模板文档。 此页面可能包含了模板的使用说明、分类和其他内容。 |
此模板使用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)
模板编辑说明
[编辑]The template trims matched pairs of leading and trailing single and double quotes from a string.
参数 | 描述 | 类型 | 状态 | |
---|---|---|---|---|
String | 1 | The string to be trimmed | 字符串 | 必需 |
参见
[编辑]- {{trim}}