模组:String2/doc
这是Module:String2的文档页面
此模块文档已评为alpha版,可接受第三方输入,并可用于少量页面以检查是否存在问题,但需要受到检查。欢迎提供新功能或修改其输入输出机制的建议。 |
The module “String2” contains 4 available calls that convert strings to upper, lower, sentence or title case.
The sentence case function finds the first letter and capitalises that, so it works properly with text containing wiki-markup. Compare {{#invoke:String2|sentence|[[action game]]}}
-> Action game with {{ucfirst:{{lc:[[action game]]}}}}
-> action game. Piped wiki-links are handled as well: {{#invoke:String2|sentence|[[trimix (breathing gas)|trimix]]}}
-> Trimix.
The title case function capitalises the first letter of each word in the text, apart from a number of short words recommended by The U.S. Government Printing Office Style Manual.
Further functions commonly used on strings would be useful additions.
用法
[编辑]{#invoke:String2 | upper |…}} {#invoke:String2 | lower |…}} {#invoke:String2 | sentence |…}} {#invoke:String2 | title |…}}
参数
[编辑]Just one unnamed parameter is used, representing the text to be converted to the required case.
范例
[编辑]Input | Output |
---|---|
{{#invoke:String2| upper | abcd }} | 脚本错误:函数“upper”不存在。 |
{{#invoke:String2| upper | abCD }} | 脚本错误:函数“upper”不存在。 |
{{#invoke:String2| upper | ABcd }} | 脚本错误:函数“upper”不存在。 |
{{#invoke:String2| upper | ABCD }} | 脚本错误:函数“upper”不存在。 |
{{#invoke:String2| upper | }} | 脚本错误:函数“upper”不存在。 |
{{#invoke:String2| lower | abcd }} | 脚本错误:函数“lower”不存在。 |
{{#invoke:String2| lower | abCD }} | 脚本错误:函数“lower”不存在。 |
{{#invoke:String2| lower | ABcd }} | 脚本错误:函数“lower”不存在。 |
{{#invoke:String2| lower | ABCD }} | 脚本错误:函数“lower”不存在。 |
{{#invoke:String2| lower | }} | 脚本错误:函数“lower”不存在。 |
{{#invoke:String2| sentence | abcd }} | Abcd |
{{#invoke:String2| sentence | abCD }} | Abcd |
{{#invoke:String2| sentence | ABcd }} | Abcd |
{{#invoke:String2| sentence | ABCD }} | Abcd |
{{#invoke:String2| sentence | [[action game]] }} | Action game |
{{#invoke:String2| sentence | [[trimix (breathing gas)|trimix]] }} | Trimix |
{{#invoke:String2 | sentence | {{#invoke:WikidataIB |getValue |P136 |name=genre |fetchwikidata=ALL |qid=Q1396889}} }} | 影射小说、寓言 |
{{#invoke:String2| sentence | }} | |
{{#invoke:String2| title | abcd }} | Abcd |
{{#invoke:String2| title | abCD }} | Abcd |
{{#invoke:String2| title | ABcd }} | Abcd |
{{#invoke:String2| title | ABCD }} | Abcd |
{{#invoke:String2| title | }} | |
{{#invoke:String2| title | The Vitamins Are In My Fresh California Raisins}} | The Vitamins Are in My Fresh California Raisins |
参见
[编辑]Module:String for the following functions:
- len
- sub
- sublength
- match
- pos
- str_find
- find
- replace
- rep