Powershell-正则表达式-匹配字符
时间:2019-08-20 13:51:13 来源:igfitidea点击:
下面是WindowsPowerShell中支持的正则表达式字符的示例
# 匹配原始值中任何位置的精确字符。 "book" -match "oo" #点号匹配任何单个字符。 "copy" -match "c..y" #至少匹配中括号中的一个字符。 "big" -match "b[iou]g" #至少匹配范围内的一个字符。使用连字符(-)可以指定相邻字符。 "and" -match "[a-e]nd" #匹配除括号中的字符外的任何字符。 "and" -match "[^brt]nd" #匹配开头字符。 "book" -match "^bo" #匹配结尾字符。 "book" -match "ok$" #匹配1个或多个g "baggy" -match "g*" #匹配0个或1个g "baggy" -match "g?"