[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[问题求助] PowerShell怎样匹配字段?

idwma哥   谢谢解答在上题中是按列数匹配

那么如果不是按列数匹配情况
转为
如果在有企业字段这行中, ,   而是匹配这种格式字段  **:**:**:**:**:**    其中有5个:隔开    其*星号可视为是大字母数字    意思是在有企业字段这一行中, 检索出匹配这种格式字段, 不论他在那一位置
  1. #@&cls&powershell "type %~s0|out-string|iex"&exit
  2. $a=gc -readcount 0 D:\UTF16.txt
  3. $b=(($a[-1..-500] -match '企业 ')[0] -split ' ')[6]
  4. $f=0
  5. sc D:\out.txt $(foreach($i in $a){if(($f -eq 0) -and $i -match "简名:\S+\s$b"){$i;$f=1}elseif(($f -eq 1) -and $i -match '已执行'){$f=0;$i,''}elseif($f -eq 1){$i}})
复制代码
  1. 偿试过各种修改, 都似乎不对 ,  
  2. $b=($a[-1..-500] -match '企业 ')[0] -replace '([0-9A-Z]{1,2}\:){5}[0-9A-Z]{1,2}'
复制代码

  1. #@&cls&powershell "type %~s0|out-string|iex"&exit
  2. $a=gc -readcount 0 D:\UTF16.txt
  3. $b=(($a[-1..-500] -match '企业 ')[0] -replace '(?i).*?(([0-9A-Z]{1,2}:){5}[0-9A-Z]{1,2}).*','$1'
  4. $f=0
  5. sc D:\out.txt $(foreach($i in $a){if(($f -eq 0) -and $i -match "简名:\s*$b"){$i;$f=1}elseif(($f -eq 1) -and $i -match '已执行'){$f=0;$i,''}elseif($f -eq 1){$i}})
复制代码

TOP

本帖最后由 娜美 于 2023-7-20 18:08 编辑

回复 2# idwma

idwma哥
偿试执行一下会返回提示
  1. iex : 所在位置 行:3 字符: 95
  2. + ... '企业 ')[0] -replace '(?i).*?(([0-9A-Z]{1,2}:){5}[0-9A-Z]{1,2}).*','$1'
  3. +                                                                          ~
  4. 表达式中缺少右“)”。
  5. 所在位置 行:4 字符: 1
  6. + $f=0
  7. + ~~~~
  8. 表达式或语句中包含意外的标记“$f=0”。
  9. 所在位置 行:1 字符: 53
  10. +                                                     ~~~
  11.     + CategoryInfo          : ParserError: (:) [Invoke-Expression], ParseException
  12.     + FullyQualifiedErrorId : MissingEndParenthesisInExpression,Microsoft.PowerShell.Commands.InvokeExpressionCommand
复制代码

TOP

多了一括号
  1. $b=($a[-1..-500] -match '企业 ')[0] -replace '(?i).*?(([0-9A-Z]{1,2}:){5}[0-9A-Z]{1,2}).*','$1'
复制代码

TOP

回复 4# idwma


    原来如此,   Sorry怪我不仔细检查一下,    这次正确了   多谢idwma哥哥

TOP

返回列表