Template:Trim quotes/doc
Jump to navigation
Jump to search
This is a documentation subpage for Template:Trim quotes. It contains usage information, categories and other content that is not part of the original template page. |
This template uses 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.
Usage[edit source]
{{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.
Example[edit source]
- <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)
Template data[edit source]
This is the TemplateData documentation for this template used by VisualEditor and other tools; see the monthly error report for this template.
TemplateData for Trim quotes
The template trims matched pairs of leading and trailing single and double quotes from a string.
Parameter | Description | Type | Status | |
---|---|---|---|---|
String | 1 | The string to be trimmed | String | required |
See also[edit source]
- {{trim}}