PowerShell Contains函数查找字符串实例
2019/7/10 21:27:15
本文主要是介绍PowerShell Contains函数查找字符串实例,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
本文介绍在PowerShell中使用字符串的Contains函数,来查询一个字符串中是否存在另一个字符串。
Contains()函数是从String对象中继承过来的,可以直接用于字符串的查找判断。Contains()函数的返回值是一个布尔值,即True或False,它表示的含义是存在或不存在。
举例如下:
“123“中存在1
True
”123“中存在”12“
True
”123“中存在123
True
”123“中不存在”13“
False
因为只是存在是否存在,所以Contains函数无法定位查询字符串在被查询字符串中的位置。如果需要定位它的位置,则需要使用到IndexOf函数,这个函数我们即将介绍。
关于PowerShell使用Contains函数查找字符串,本文就介绍这么多,希望对您有所帮助,谢谢!
这篇关于PowerShell Contains函数查找字符串实例的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-09-14SharePoint 2019 用 PowerShell将启用发布功能站点网站集另存为模板
- 2022-08-30PowerShell教程 - 程序性能和BUG分析工具
- 2022-08-30PowerShell教程 - 模块管理(Modules Management)
- 2022-08-29PowerShell教程 - Web requests(Web请求)
- 2022-08-26PowerShell教程 - 日期时间管理(Date & Time Management)
- 2022-08-25PowerShell教程 - 磁盘与硬件管理(Disk & Hardware Management)
- 2022-08-25PowerShell教程 - 系统事件管理(System Event Management)
- 2022-08-25PowerShell教程 - 文件系统管理(File System Management)
- 2022-08-24PowerShell教程 - 网络管理(Network Management)
- 2022-08-24PowerShell