下面小编就为大家带来一篇讲powershell分割字符串,powershell用空格,逗号,分号分割字符串。小编觉得挺不错的,现在就分享给大家,如果你在找powershell字符串函数使用,powershell trim函数,powershell split函数,也可以做个交流。一起跟随小编过来看看吧。
powershell分割字符串,powershell用空格,逗号,分号分割字符串
作者:小程序爱好者 发布时间:2020-06-10
powershell写脚本时,
经常会要把字符串按指定字符进行分割,
比如用空格,逗号或者分号等,
其实也很简单:
一、 powershell使用 -split 选项进行分割
PS D:\> "qin;zi;heng" -split ';'
qin
zi
heng
二、 ps使用 字符串split函数 选项进行分割
PS D:\> "qin, zi , heng".Split(',')
qin
zi
heng
使用函数还有一个好处,
后面还可以继续接函数处理,
下面的示例演示了powershell使用split函数分割字符串后,
又使用trim函数把结果两边的空格删除了
PS D:\> "qin, zi , heng".Split(',').Trim()
qin
zi
heng
powershell split函数原型及相关参数如下
string[] Split(Params char[] separator),
string[] Split(char[] separator, int count),
string[] Split(char[] separator, System.StringSplitOptions options),
string[] Split(char[] separator, int count, System.StringSplitOptions options),
string[] Split(string[] separator, System.StringSplitOptions options),
string[] Split(string[] separator, int count, System.StringSplitOptions options)
猛击这里,
观看子恒老师《小程序开发入门》系列视频
了解实现过程和下载相关源代码
声明:部分文章或图片未能及时与原作者取得联系,若来源标注错误或侵犯到您的权益烦请告知QQ:2334512685,我们会及时删除。
发布:秦子恒博客,欢迎转载分享,请保留出处。
powershell分割字符串,powershell用空格,逗号,分号分割字符串链接:https://www.qinziheng.com/details/9096/
powershell分割字符串,powershell用空格,逗号,分号分割字符串相关文章