文件名称:endswith:检查字符串是否以某个字符串结尾,可以忽略大小写
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-11 12:39:26
JavaScript
以。。结束 检查字符串是否以某个字符串结尾,可以忽略大小写 安装 与一起安装: $ component install sk7/endswith 原料药 str.endsWith(str) "123blah".endsWith("blah") -> true "123blah".endsWith("Blah") - > false "123blah".endsWith("123") - > false str.endsWithIgnoreCase(str) "123blah".endsWithIgnoreCase("blah") -> true "123blah".endsWithIgnoreCase("Blah") -> true "123blah".endsWithIgnoreCase("123") - > false 执照 MIT许可证(MIT) 版权所有(c)20
【文件预览】:
endswith-master
----index.js(447B)
----package.json(288B)
----component.json(299B)
----Readme.md(2KB)
----.gitignore(17B)
----Makefile(166B)