Template:Str startswith
来自音MAD维基
这个文档嵌入自Template:Str startswith/doc。
本模板原来自萌娘百科页面Template:Str startswith,依 CC BY-NC-SA 3.0 授权而部分引入,若版权协议与本站默认声明的协议存在不兼容部分,请注意以来源所声明协议为准。 经过双方编者的修改,本模板可能已与引入时有很大差异。 |
本模板用于判断字符串是否以某一子字符串起始。
用法
{{str startswith|字符串|子串}}
- 字符串
- 必填。原字符串。
- 子串
- 必填。用于判断的子串。
范例
代码 | 效果 |
---|---|
{{str startswith|Example|Ex}} |
yes |
{{str startswith|Example|ex}} |
|
{{str startswith|Example|f}} |
|
{{str startswith|Example|Example}} |
yes |
|