PowerShell实现在字符串中查找大写字母
程序员文章站
2022-03-12 22:01:36
如果你想找到字符串中的大写字符,你可能会使用正则表达式。亦或者使用你的大写字母列表一个个匹配,当然更灵活的是使用.net中的 isupper()函数。
小编注:.net是...
如果你想找到字符串中的大写字符,你可能会使用正则表达式。亦或者使用你的大写字母列表一个个匹配,当然更灵活的是使用.net中的 isupper()函数。
小编注:.net是powershell的土壤,尽最大可能挖掘出这些framework框架中的函数,是我们伸手党永恒的追求。
下面的例子,会扫描字符串中的每一个字符,然后返回遇到的第一个大写字母的位置:
$text = 'here is some text with uppercase letters' $c = 0 $position = foreach ($character in $text.tochararray()) { $c++ if ([char]::isupper($character)) { $c break } } if ($position -eq $null) { 'no uppercase characters detected.' } else { "first uppercase character at position $position" $text.substring(0, $position) + "<<<" + $text.substring($position) }
输出结果如下:
ps c:\>first uppercase character at position 24 here is some text with u<<
推荐阅读
-
PowerShell中查找字符串位置的IndexOf函数使用实例
-
PowerShell实现在字符串中查找大写字母
-
python实现在字符串中查找子字符串的方法
-
Node.js实现在目录中查找某个字符串及所在文件_node.js
-
PowerShell中查找字符串位置的IndexOf函数使用实例
-
Node.js实现在目录中查找某个字符串及所在文件_node.js
-
python实现在字符串中查找子字符串的方法
-
JavaScript实现在数组中查找不同顺序排列的字符串_javascript技巧
-
JavaScript实现在数组中查找不同顺序排列的字符串_javascript技巧
-
PowerShell实现在字符串中查找大写字母