模板:Trim brackets/doc
跳转到导航
跳转到搜索
| File:Edit-copy green.svg | 此页面是Template:Trim brackets的模板文档。 此页面可能包含了模板的使用说明、分类和其他内容。 |
| File:Lua-Logo.svg | 此模板使用Lua语言: |
This template trims leading and trailing square brackets and whitespace from a string. This is similar to {{delink}}, but it won't remove brackets from the middle of the string. The string should be passed as the first unnamed parameter or using |1= if your string contains any = signs. You may substitute this template - that is, if used as {{subst:trim brackets}}, the resulting wikicode is "clean".
Usage[编辑]
{{trim brackets|text}} = text with any leading or trailing square brackets removed (as long as text doesn't contain any = signs).
{{trim brackets|1=text}} = text with any leading or trailing square brackets removed.
Example[编辑]
- "
{{trim brackets|1= [[abc]] }}" produces "abc".
- "
{{trim brackets|1= [[abc]], [[def]], and [[ghi]] }}" produces "abc]], def, and [[ghi"
("{{delink|1= [[abc]], [[def]], and [[ghi]] }}" produces "").
- "
{{trim brackets|1= [[abc|xyz]] }}" produces "abc|xyz".
Template data[编辑]
<templatedata> {
"description": "The template trims leading and trailing square brackets from a string.",
"params": {
"1": {
"label": "String",
"description": "The string to be trimmed",
"type": "string",
"required": true
}
}
} </templatedata>
See also[编辑]
- {{delink}}, which does nearly the exact same thing, but also removes balanced pairs of square brackets that aren't leading and trailing and has additional options.
- {{trim}}