[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
  1. @echo off
  2. set info=互助互利,支付宝扫码头像,感谢赞助
  3. rem 有问题,可加QQ956535081及时沟通
  4. title %info%
  5. cd /d "%~dp0"
  6. set "input=list.txt"
  7. set "output=result.txt"
  8. powershell -NoProfile -ExecutionPolicy bypass ^
  9.     $text=[IO.File]::ReadAllLines('%input%',[Text.Encoding]::Default);^
  10.     $fs=New-Object System.IO.FileStream('%output%', [System.IO.FileMode]::Create);^
  11.     $sw=New-Object System.IO.StreamWriter($fs, [Text.Encoding]::Default);^
  12.     for($i=0;$i -lt $text.count;$i++){^
  13.         $m=[regex]::match($text[$i].trim(),'^^([^^\s\d]+)\s*?(\d+)');^
  14.         if($m.success){^
  15.             $sw.WriteLine($m.groups[2].value+\"`t\"+$m.groups[1].value);^
  16.         }else{^
  17.             $m=[regex]::match($text[$i].trim(),'^^(\d+)\s*?([^^\s\d]+)');^
  18.             if($m.success){$sw.WriteLine($m.groups[1].value+\"`t\"+$m.groups[2].value)};^
  19.         };^
  20.     };^
  21.     $sw.Close();$fs.Close();
  22. echo;%info%
  23. pause
复制代码
提供bat代写,为你省时省力省事,支付宝扫码头像支付
微信: unique2random

TOP

返回列表