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

TOP

本帖最后由 tiandyoin 于 2023-8-4 21:38 编辑
  1. @goto :main_20230424_102850
  2. @Usage:
  3. cd /d "%~dp0" & call "字符串 Trim.bat" :Trim[Ext] arg1_name L[eft] R[ight]
  4. :main_20230424_102850
  5. @echo off||code by tiandyoin&title "字符串 Trim.bat"  
  6. :: 约定 %~1 为 :Trim... 其中的一个标签(Label)。  
  7. if "%~1"=="" (
  8. call :test_20230424_102850  
  9. cd /d "%~dp0" & call "判断 双击运行 or 命令提示符窗口.bat" :where-am-i
  10. ) else (
  11. :: 即 call :Trim[Ext] arg1_name L[eft] R[ight]
  12. call %*
  13. )
  14. @goto :eof
  15. :test_20230424_102850
  16. @echo off&setlocal enabledelayedexpansion
  17. set "str=   ""test.txt  "".  .. ...   "
  18. echo [!str!]
  19. call :Trim str
  20. echo [!str!]
  21. set "str=   ""test.txt  "".  .. ...   "
  22. echo [!str!]
  23. call :Trim str "" ""
  24. echo [!str!]
  25. set "str=   ""test.txt  "".  .. ...   "
  26. echo [!str!]
  27. call :Trim str L, R
  28. echo [!str!]
  29. set "str=   ""test.txt  "".  .. ...   "
  30. echo [!str!]
  31. call :TrimExt str Right
  32. echo [!str!]
  33. @goto :eof
  34. @rem Usage:
  35. rem 需要调用者提供“延迟变量扩展环境”。  
  36. :Trim  <arg1_name [,L[eft] ,R[ight]]>
  37. @echo off&setlocal enabledelayedexpansion
  38. set fst=0
  39. set lst=0
  40. set "input=!%~1!"
  41. if /i not "%~2"=="L" if /i not "%~2"=="Left" if /i not "%~2"=="" goto :Trim.lTrim.EOF
  42. :Trim.lTrim
  43. set ch=!input:~0,1!
  44. @rem 如果 ch 是双引号,需要凑成对组成引用闭环。
  45. if not "!ch!!ch!"=="  " if not "!ch!!ch!"==" " goto :Trim.lTrim.EOF
  46. set "input=!input:~1!"
  47. set /a fst+=1
  48. goto :Trim.lTrim
  49. :Trim.lTrim.EOF
  50. if /i not "%~2"=="R" if /i not "%~2"=="Right" if /i not "%~2"=="" if /i not "%~3"=="R" if /i not "%~3"=="Right" if /i not "%~3"=="" goto :Trim.EOF
  51. :Trim.rTrim
  52. set ch=!input:~-1!
  53. if not "!ch!!ch!"=="  " if not "!ch!!ch!"==" " goto :Trim.EOF
  54. set "input=!input:~0,-1!"
  55. set /a lst-=1
  56. goto :Trim.rTrim
  57. :Trim.EOF
  58. if !lst!==0 (set "lst=") else (set "lst=,!lst!")
  59. endlocal & set "%~1=!%~1:~%fst%%lst%!"
  60. @goto :EOF
  61. @rem Usage:
  62. rem 需要调用者提供“延迟变量扩展环境”。  
  63. rem 增加功能: 去除右边 '.'
  64. :TrimExt  <arg1_name [,L[eft] ,R[ight]]>
  65. @echo off&setlocal enabledelayedexpansion
  66. set fst=0
  67. set lst=0
  68. set "input=!%~1!"
  69. if /i not "%~2"=="L" if /i not "%~2"=="Left" if /i not "%~2"=="" goto :TrimExt.lTrimExt.EOF
  70. :TrimExt.lTrimExt
  71. set ch=!input:~0,1!
  72. @rem 如果 ch 是双引号,需要凑成对组成引用闭环。
  73. if not "!ch!!ch!"=="  " if not "!ch!!ch!"==" " goto :TrimExt.lTrimExt.EOF
  74. set "input=!input:~1!"
  75. set /a fst+=1
  76. goto :TrimExt.lTrimExt
  77. :TrimExt.lTrimExt.EOF
  78. if /i not "%~2"=="R" if /i not "%~2"=="Right" if /i not "%~2"=="" if /i not "%~3"=="R" if /i not "%~3"=="Right" if /i not "%~3"=="" goto :TrimExt.EOF
  79. :TrimExt.rTrimExt
  80. set ch=!input:~-1!
  81. if not "!ch!!ch!"=="  " if not "!ch!!ch!"==" " if not "!ch!!ch!"==".." goto :TrimExt.EOF
  82. set "input=!input:~0,-1!"
  83. set /a lst-=1
  84. goto :TrimExt.rTrimExt
  85. :TrimExt.EOF
  86. if !lst!==0 (set "lst=") else (set "lst=,!lst!")
  87. endlocal & set "%~1=!%~1:~%fst%%lst%!"
  88. @goto :EOF
  89. @rem Usage:
  90. rem 需要调用者提供“延迟变量扩展环境”。  
  91. rem 功能: 去除指定字符左右两边的其它字符。
  92. rem 方法:
  93. rem 使用 Set 替换英文双引号为中文双引号,替换指定字符等为双引号,
  94. rem 再使用 Set 去除引号两边字符,最后还原回英文双引号。
  95. rem         %var:*"=set "var=%
  96. :TrimBesideAssigner  <arg1_name [,%Assigner% ,L[eft] ,R[ight]]>
  97. REM 未完成
  98. @goto :EOF
复制代码
  1. 【测试用例】
  2. "转义字符.txt"
  3. 以下测试空行:
  4.    
  5. 下面是 中国DOS联盟 @bjsh 的例子:
  6. "aou"eo
  7. 下面一行需要 findstr /n
  8. ;euou%^>
  9. ::::aeui
  10.    
  11. :::E2uo alejou 3<o2io|
  12. ^aue||%ou
  13. aoue eou 2
  14. euo 8
  15. ege#6758!7^^9098!98%$&^
  16. ueyi^^^^aueuo2
  17. ~ ! @ # $ % ^ & * ( () " ok " No " <>nul
  18. ege#6758^^^!7^^^^9098^!98%$&^^
  19. ~ ! @ # $ %"  ^  "& * ( () " ok " No " <>nul
  20. sdsdg:sadgs
  21. kl&>jl^k!tsd!21%mk%gd
  22. kl&>jlk^!tsd^!21%mk%gd
  23. dgssdgdg^gds^gdsa
  24. 下面是 CSDN @tiandyoin 的例子:
  25. @REM cmd [/c, /k] 命令中需要双引号的特殊字符是:
  26. @REM      <white space>
  27. @rem      & < > [ ] { } ^ = ; ! ' + , ` ~
  28. @REM 详见:
  29. @REM "批处理之家\ntcmds.chs.chm"
  30. @REM      &()[]{}^=;!'+,`~
  31. %~
  32. %~:
  33. %~:=%
  34. :123
  35. :
  36. %a%
  37. !b!
  38. "%a%"
  39. "!b!"
  40. %%a%%
  41. ^!b^!
  42. %a!%b!
  43. !b%a!%
  44. %%a%
  45. ^!b!
  46. a"%b"%c"
  47. a"!b"!c"
  48. "a b " c"
  49. "a b "" c"
  50. ""a b "" c"
  51. ""a b "" c""
  52. """a b "" c"""
  53. (()((
  54. [\s\t ]
  55. :test"^!~:^=!" % ~:=% ^0&((()||><>> `@#$*-_+{{}[]]\;',.?/ %~0 !~0 %空变量% !空变量! %空变量:空值1=空值2% !空变量:空值1=空值2! "
  56. :test"^!~:^=!" % ~:=% ^0&((()||><>>^^ ^^^ ^^^^  `@#$*-_+{{}[]]\;',.?/ %~0 !~0 %空变量% !"空变量! %"空变量:空值1=空值2% !空变量:空值1=空值2! "
  57.   1:c:\3/%5:\%1 %* 2<1.bug "!a!>" & !b!<"!c!"|!d! "?4*6?%e%"%f%" && (( %!g!% || !%h%! )  
  58.   1:c:\3/%5:\%1 %* 2<1.bug "!a!>" & !b^!<"=^^!c!"|!d^! "?4*6?%e%"+%f%" && (( %!g!% || !%h%! )  
  59.   1:c:\3/%5:\%1 %* 2<1.bug !i! "!a!>" & !b^!<"=^^!c!"|!d^! "?4*6?%e%"+%f%" && (( %!g!% || !%h%! )   
  60.    " 1:c:\3/%5:\%1 %* 2<1.bug !i! "!a!>" & !b^!<"=^^!c!"|!d^! "?4*6?%e%"+%f%" && (( %!g!% || !%h%! ) ;euou%^>1.txt  "   
  61.    
  62. "update-content": " <p>1.优化程序,提高稳定性,提升用户体验。</p><p>2.订阅即将到期增加提醒。</p><p>3.“我的套餐”中增加显示激活码和邮箱的信息。</p><p>4.优化激活失败提示信息。</p><p>5.程序多开问题优化处理。</p><p>6.windows平台网络诊断数据异常问题。</p><p>7.其它问题优化。</p>",
复制代码
没找到完美的方法,这是我自己写的,尽可能解决问题:
1. 单数个双引号
2. :: 开头的注释
3. ; 开头的隔行作用
4. !! 被误当成取值
5. %% 被误当成取值
6. %~ 闪退
7. ^^^^ 多个的折叠问题

使用 set 去除空格前需要转义特殊字符,因此我没采用这些方法,而使用循环逐一处理每一个字符

TOP

返回列表