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


    显示宽度其实是取决于字体,等宽还是比例,全角和半角等,控制台一般是consoles字体,是等宽的,全角输入中英文字符也是相同宽度。

TOP

回复 20# buyiyang

批处理没有格式化输出,要对齐要注意两点:
    1.等宽字体和比例字体。等宽字体每个西文宽度相同,才能对齐;而比例字体会将西文宽度按比例调整以便于观看。中文一般都是等宽的。
    2.全角和半角。半角字符占1个标准字符宽度,西文(包括空格)一般为半角;而全角字符占2个标准字符宽度,中文均为全角。
楼上批处理是根据字节计算宽度的,有findstr算偏移量、for的%%~zi增强扩展算size的,都是根据:
    在ansi(gb2312)编码中一个汉字必须是两个值大于127的字节连在一起,并兼容ASCII。所以一个汉字=2个字节=2个标准字符宽度,一个ASCII字符=1个字节=1个标准字符宽度。
其实可以通过if比较区分每个字符是中文还是英文。
还有通过控制台437代码页将双字节的字符分成两个字符来算字符宽度的方法。
如果是utf-8等其他编码方式则会不同。

TOP

本帖最后由 buyiyang 于 2024-7-20 21:55 编辑

回复 25# ppll2030

这个不限列数,还用了两种方法算字符宽度。
  1. @echo off
  2. chcp 437 >nul
  3. set "Separator=@"
  4. set "inputfile=a.txt"
  5. setlocal enabledelayedexpansion
  6. :loop
  7. set /a column+=1
  8. set /a #C%column%max=mark=0
  9. for /f "tokens=%column%" %%i in (%inputfile%) do (
  10.     call :strlen "%%i"
  11.     if !len! geq !#C%column%max! set /a #C%column%max=len
  12.     set mark=1
  13.     )
  14. if %mark% equ 1 goto :loop
  15. set /a column-=1
  16. chcp 936 >nul
  17. set /a lines=0
  18. (for /l %%i in (1,1,%column%) do call :output %%i)>$.temp
  19. set "Separator="&set arg=" delims=%Separator%" "rem"
  20. set "inputfile=$.temp"&(for /l %%i in (1,1,%lines%) do call :output %%i %arg%)>output_%inputfile%
  21. del /q $ $.temp
  22. pause&exit
  23. :strlen
  24. set "str=_%~1"
  25. set "len=0"
  26. for %%n in (64 32 16 8 4 2 1) do (
  27.     if "!str:~%%n,1!" neq "" (
  28.         set/a "len+=%%n"
  29.         set "str=!str:~%%n!"
  30.         )
  31. )
  32. exit /b
  33. :output
  34. if %1 equ 1 goto :output_2
  35. for /f "tokens=1,%1%~2" %%a in (%inputfile%) do (
  36.     if "%%b"=="" (set "field=-") else set "field=%%b"
  37.     %~3 set/p="!field!"<nul>$&for %%i in ($) do (set len=%%~zi)
  38.     %~3 set /a spaceNum=!#C%1max!-len+2,n+=1
  39.     set "outstr=!outstr!%Separator%!field!"
  40.     %~3 for /l %%i in (1,1,!spaceNum!) do set "outstr=!outstr! "
  41.     )
  42. %~3 if %n% geq %lines% set /a lines=n
  43. %~3 set /a n=0
  44. echo,!outstr!
  45. set "outstr="
  46. exit /b
  47. :output_2
  48. for /f "tokens=%1%~2" %%a in (%inputfile%) do (
  49.     if "%%a"=="" (set "field=-") else set "field=%%a"
  50.     %~3 set/p="!field!"<nul>$&for %%i in ($) do (set len=%%~zi)
  51.     %~3 set /a spaceNum=!#C%1max!-len+2,n+=1
  52.     set "outstr=!outstr!%Separator%!field!"
  53.     %~3 for /l %%i in (1,1,!spaceNum!) do set "outstr=!outstr! "
  54.     )
  55. %~3 if %n% geq %lines% set /a lines=n
  56. %~3 set /a n=0
  57. echo,!outstr!
  58. set "outstr="
复制代码

TOP

回复 36# newswan


    第35行应该是maxWidth - LenHZ

TOP

回复 35# aloha20200628


    使用这段代码如果字段中有=,等批处理分隔符的话会被错误分割;而且以“全文最大字段长度”为标准,当原文件字段长度差距悬殊时会使结果中字符较少的列视觉间隔过大而不协调。

TOP

有的虽然解决了在cmd屏幕里对齐,  但输出到文本但输出到文本又是另一个不对齐现象发生了
娜美 发表于 2024-7-21 17:30

先看看我20楼和30楼说的字体问题……

TOP

算字节长度其实也可以将文本转换为16进制字串进行计算和处理,而且不用担心任何特殊字符。
  1. @echo off&setlocal enabledelayedexpansion
  2. set "input=a.txt"&set /a m=line=1&set "act=set/p=,&set/a m=1"
  3. for %%i in ("%input%") do fsutil file creATenew "%input%.zero" %%~zi >nul
  4. (for /f "tokens=2" %%a in ('fc /b "%input%" "%input%.zero"^|findstr /irc:"[0-9A-F]*: [0-9A-F][0-9A-F] 00"') do (
  5.     if /i "%%a"=="0A" (echo,&set/a m=1,line+=1,col=0) else if /i "%%a"=="0D" (echo,
  6.         for %%l in (!line!) do for /l %%i in (1,1,!col!) do (
  7.             if !C%%i_%%l! gtr !C%%imax! set/a C%%imax=C%%i_%%l
  8.             set "C%%i_%%l="
  9.             ) ) else if /i "%%a"=="20" (%act%) else if /i "%%a"=="09" (%act%) else (
  10.                     set/p=%%a
  11.                     set /a col+=m,m=0
  12.                     set /a C!col!_!line!+=1
  13.                    )
  14.         ))<nul >"%input%.temp"
  15. (for /f "delims=" %%a in (%input%.temp) do (
  16.     set /a col=0
  17.     for %%i in (%%a) do (
  18.         set /a col+=1&set "space="
  19.         set /a size=C!col!max,len=size*2+2
  20.         for /l %%i in (1,1,!size!) do set "space=!space!20"
  21.         set "outstr=%%i!space!"
  22.         for %%i in (!len!) do echo,!outstr:~0,%%i!
  23.         )   
  24.     set /p =0d0a
  25. )   )<nul >"out_%input%"
  26. del /q "%input%.zero" "%input%.temp"
  27. certutil -decodehex -f "out_%input%" "out_%input%" >nul
  28. pause
复制代码
1

评分人数

TOP

返回列表