标题: [文本处理] 批处理如何去掉字符串两边的空格 [打印本页]
作者: 胡子轩 时间: 2008-1-2 19:12 标题: 批处理如何去掉字符串两边的空格
想写一个可以去掉字符串两边空格的批处理,做为函数调用,可是却不知从何下手
请诸位帮忙.......
如 set "str= abc d "
结果为
"str=abc d"
[ 本帖最后由 胡子轩 于 2008-1-3 09:55 编辑 ]
作者: youxi01 时间: 2008-1-2 20:06
当然,可以用if来检测。
但是因为受 联盟里 3742版主的影响,不太喜欢if,所以尽量不用...
测试代码:- @echo off
- set "str= abc df fd d "
- for /f "tokens=* delims= " %%i in ("%str%") do set "str=%%i"
- set str=%str: = # %
- call :Rev "%str%"
- for /f "tokens=* delims=#" %%i in ("%Res%") do set "str=%%i"
- set "str=%str:#= # %"
- call :Rev "%str%"
- echo "%Res:#= %"
- pause>nul
- :Rev str
- set "Res="
- for %%i in (%~1) do call set Res=%%i%%Res%%
复制代码
作者: ieutk 时间: 2008-1-2 21:22
我来一个if的- @echo off
- set "str= abc d "
- for /f "tokens=* delims= " %%a in ("%str%") do (
- set "var=%%a"
- call :ie
- )
- echo.
- echo 去除空格前: [%str%]
- echo.
- echo 去除空格后: [%var%]
- echo.
- pause&goto :eof
-
-
- :ie
- if "%var:~-1%"==" " (set "var=%var:~0,-1%"&goto ie) else goto :eof
复制代码
作者: youxi01 时间: 2008-1-2 21:46
呵呵,楼上的不错,先通过for循环消除开头的 空格,然后用if来检测(个人不太喜欢)...
也有几点建议:
1、标签中的变量设置不甚恰当。
程序中的var变量在这里最好放到标签:ie里,特别是比较长的程序的话,你就知道好处了。
2、那个else似乎没什么用处。
改成以下代码是否好点呢?- @echo off
- set "str= abc d "
- for /f "tokens=* delims= " %%a in ("%str%") do call :ie "%%a"
- echo.
- echo 去除空格前: [%str%]
- echo.
- echo 去除空格后: [%var%]
- echo.
- pause&goto :eof
-
- :ie str
- set "var=%~1"
- if "%var:~-1%"==" " call :ie "%var:~0,-1%"
复制代码
作者: ieutk 时间: 2008-1-2 22:13
呵呵,楼上的不错,先通过for循环消除开头的 空格,然后用if来检测(个人不太喜欢)...
也有几点建议:
1、标签中的变量设置不甚恰当。
程序中的var变量在这里最好放到标签:ie里,特别是比较长的程序的话,你就知道好处了。
2、那个else似乎没什么用处。
改成以下代码是否好点呢?
谢谢提点,确实,那个变量var放在子标签中很好,"程序"归"程序","函数"归"函数".
我个人也很喜欢用"函数"的方式来编写代码,再者水平有限,编写不出什么大型
的脚本,所以在这些方面有所忽略.- if "%var:~-1%"==" " call :ie "%var:~0,-1%"
复制代码
你这一行代码以前没有看到这种用法,现在才知道,学习ing. . .
作者: novaa 时间: 2008-1-2 22:56
学习了。
@echo off
set "str= abc df fd d "
for /f "tokens=* delims= " %%i in ("%str%") do set "str=%%i"
echo %str%
这里的是abc df fd d
不是去掉空格了吗?
作者: youxi01 时间: 2008-1-2 23:06
呵呵,你这个其实 还没去掉d后面的空格的///
作者: ieutk 时间: 2008-1-2 23:07
No,非也,6楼请仔细看咯,d后面还有空格呢,只是看不到而己,看下面代码,用括号括起来就方便看了- @echo off
- set "str= abc df fd d "
- for /f "tokens=* delims= " %%i in ("%str%") do set "str=%%i"
- echo [%str%]
- pause
复制代码
[ 本帖最后由 ieutk 于 2008-1-2 23:09 编辑 ]
作者: namejm 时间: 2008-1-2 23:24
转一下以前写的代码:
去掉左侧空格1:- @echo off
- set "str= ab c&>! "
- for /f "tokens=*" %%i in ("%str%") do echo "☆%%i☆"
- pause
复制代码
去掉左侧空格2:- @echo off
- set "str= ab c&>! "
- :intercept
- if "%str:~0,1%"==" " set "str=%str:~1%"&goto intercept
- echo "☆%str%☆"
- pause
复制代码
去掉右侧空格1:- @echo off
- set "str= ab c&>! "
- for /f "delims=" %%i in ("%str%") do echo "☆%%~nxi☆"
- pause
复制代码
去掉右侧空格2:- @echo off
- set "str= ab c&>! "
- :intercept
- if "%str:~-1%"==" " set "str=%str:~0,-1%"&goto intercept
- echo "☆%str%☆"
- pause
复制代码
去掉首尾空格1:- @echo off
- set "str= ab c&>! "
- for /f "tokens=*" %%i in ("%str%") do echo "☆%%~nxi☆"
- pause
复制代码
去掉首尾空格2:- @echo off
- set "str= ab c&>! "
-
- :intercept_left
- if "%str:~0,1%"==" " set "str=%str:~1%"&goto intercept_left
-
- :intercept_right
- if "%str:~-1%"==" " set "str=%str:~0,-1%"&goto intercept_right
- echo "☆%str%☆"
- pause
复制代码
去掉所有空格:- @echo off
- set "str= ab c&>! "
- set "str=%str: =%"
- echo "☆%str%☆"
- pause
复制代码
以上代码能兼容除双引号外的其他特殊字符。
作者: youxi01 时间: 2008-1-2 23:42
呵呵,这个以前就拜读过了,只是当初没太注意,也没去想原理;原来蛮有应用价值的嘛!
精品就是精品啊,哈哈!!
作者: ieutk 时间: 2008-1-2 23:53
namejm出手必属精品
作者: 随风 时间: 2008-1-3 01:43
也来个不能显示特殊字符,
去除首尾空格
:- @echo off
- set "str= ab c "
- call :lis %str%
- pause
- :lis
- echo ☆%*☆
- goto :eof
复制代码
作者: youxi01 时间: 2008-1-3 07:46
好,值得加分!!
在联盟qw版主写的 数字排序 程序里出现过这种用法:%*
作者: youxi01 时间: 2008-1-4 19:35
对于楼上的 namejm 和 随风 兄弟的代码,应该来说,可以比较好的解决楼主的问题,但是也有瑕疵:
1、随风兄弟的现行代码 无法处理 特殊字符;
2、namejm的代码:- @echo off
- set "str= ab c&>! "
- for /f "tokens=*" %%i in ("%str%") do echo "☆%%~nxi☆"
- pause
复制代码
namejm的代码是利用了CMD对文件路径、文件名的“解析漏洞”很好的去掉了字符串首尾两端的空格,但是还存在一些小问题,测试代码:- @echo off
- set "str= ab\ c&>! . "
- for /f "tokens=*" %%i in ("%str%") do echo "☆%%~nxi☆"
- pause
复制代码
运行结果会抛弃"ab"和"."
呵呵,欢迎大家继续讨论!
作者: 随风 时间: 2008-1-5 13:34
极其臃肿.
:- @echo off
- set "str= a\b c&>! . "
- call :lis
- set flag=1
- :lis
- set var=
- for /l %%i in (1 1 100) do (
- if defined str (
- call set "var=%%var%%%%str:~-1%%"
- call set "str=%%str:~0,-1%%"
- ))
- set "str=%var%"
- for /f "tokens=*" %%a in ("%str%") do set "str=%%a"
- if not defined flag goto :eof
- echo "%str%"
- pause
复制代码
...
作者: xxx3212 时间: 2008-1-19 23:00
真他齐全 特别是 %%~nxi 的用法
作者: tiandyoin 时间: 2023-8-4 17:00
本帖最后由 tiandyoin 于 2023-8-4 21:38 编辑
- @goto :main_20230424_102850
-
- @Usage:
- cd /d "%~dp0" & call "字符串 Trim.bat" :Trim[Ext] arg1_name L[eft] R[ight]
-
- :main_20230424_102850
- @echo off||code by tiandyoin&title "字符串 Trim.bat"
- :: 约定 %~1 为 :Trim... 其中的一个标签(Label)。
- if "%~1"=="" (
- call :test_20230424_102850
- cd /d "%~dp0" & call "判断 双击运行 or 命令提示符窗口.bat" :where-am-i
- ) else (
- :: 即 call :Trim[Ext] arg1_name L[eft] R[ight]
- call %*
- )
- @goto :eof
-
- :test_20230424_102850
- @echo off&setlocal enabledelayedexpansion
- set "str= ""test.txt "". .. ... "
- echo [!str!]
- call :Trim str
- echo [!str!]
-
- set "str= ""test.txt "". .. ... "
- echo [!str!]
- call :Trim str "" ""
- echo [!str!]
-
- set "str= ""test.txt "". .. ... "
- echo [!str!]
- call :Trim str L, R
- echo [!str!]
-
- set "str= ""test.txt "". .. ... "
- echo [!str!]
- call :TrimExt str Right
- echo [!str!]
- @goto :eof
-
- @rem Usage:
- rem 需要调用者提供“延迟变量扩展环境”。
- :Trim <arg1_name [,L[eft] ,R[ight]]>
- @echo off&setlocal enabledelayedexpansion
- set fst=0
- set lst=0
- set "input=!%~1!"
- if /i not "%~2"=="L" if /i not "%~2"=="Left" if /i not "%~2"=="" goto :Trim.lTrim.EOF
- :Trim.lTrim
- set ch=!input:~0,1!
- @rem 如果 ch 是双引号,需要凑成对组成引用闭环。
- if not "!ch!!ch!"==" " if not "!ch!!ch!"==" " goto :Trim.lTrim.EOF
- set "input=!input:~1!"
- set /a fst+=1
- goto :Trim.lTrim
- :Trim.lTrim.EOF
- 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
- :Trim.rTrim
- set ch=!input:~-1!
- if not "!ch!!ch!"==" " if not "!ch!!ch!"==" " goto :Trim.EOF
- set "input=!input:~0,-1!"
- set /a lst-=1
- goto :Trim.rTrim
- :Trim.EOF
- if !lst!==0 (set "lst=") else (set "lst=,!lst!")
- endlocal & set "%~1=!%~1:~%fst%%lst%!"
- @goto :EOF
-
- @rem Usage:
- rem 需要调用者提供“延迟变量扩展环境”。
- rem 增加功能: 去除右边 '.'
- :TrimExt <arg1_name [,L[eft] ,R[ight]]>
- @echo off&setlocal enabledelayedexpansion
- set fst=0
- set lst=0
- set "input=!%~1!"
- if /i not "%~2"=="L" if /i not "%~2"=="Left" if /i not "%~2"=="" goto :TrimExt.lTrimExt.EOF
- :TrimExt.lTrimExt
- set ch=!input:~0,1!
- @rem 如果 ch 是双引号,需要凑成对组成引用闭环。
- if not "!ch!!ch!"==" " if not "!ch!!ch!"==" " goto :TrimExt.lTrimExt.EOF
- set "input=!input:~1!"
- set /a fst+=1
- goto :TrimExt.lTrimExt
- :TrimExt.lTrimExt.EOF
- 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
- :TrimExt.rTrimExt
- set ch=!input:~-1!
- if not "!ch!!ch!"==" " if not "!ch!!ch!"==" " if not "!ch!!ch!"==".." goto :TrimExt.EOF
- set "input=!input:~0,-1!"
- set /a lst-=1
- goto :TrimExt.rTrimExt
- :TrimExt.EOF
- if !lst!==0 (set "lst=") else (set "lst=,!lst!")
- endlocal & set "%~1=!%~1:~%fst%%lst%!"
- @goto :EOF
-
- @rem Usage:
- rem 需要调用者提供“延迟变量扩展环境”。
- rem 功能: 去除指定字符左右两边的其它字符。
- rem 方法:
- rem 使用 Set 替换英文双引号为中文双引号,替换指定字符等为双引号,
- rem 再使用 Set 去除引号两边字符,最后还原回英文双引号。
- rem %var:*"=set "var=%
- :TrimBesideAssigner <arg1_name [,%Assigner% ,L[eft] ,R[ight]]>
- REM 未完成
- @goto :EOF
复制代码
- 【测试用例】
-
- "转义字符.txt"
- 以下测试空行:
-
-
-
-
-
-
- 下面是 中国DOS联盟 @bjsh 的例子:
-
- "aou"eo
- 下面一行需要 findstr /n
- ;euou%^>
- ::::aeui
-
- :::E2uo alejou 3<o2io|
- ^aue||%ou
-
- aoue eou 2
- euo 8
- ege#6758!7^^9098!98%$&^
- ueyi^^^^aueuo2
- ~ ! @ # $ % ^ & * ( () " ok " No " <>nul
- ege#6758^^^!7^^^^9098^!98%$&^^
-
- ~ ! @ # $ %" ^ "& * ( () " ok " No " <>nul
- sdsdg:sadgs
-
- kl&>jl^k!tsd!21%mk%gd
- kl&>jlk^!tsd^!21%mk%gd
- dgssdgdg^gds^gdsa
-
- 下面是 CSDN @tiandyoin 的例子:
-
- @REM cmd [/c, /k] 命令中需要双引号的特殊字符是:
- @REM <white space>
- @rem & < > [ ] { } ^ = ; ! ' + , ` ~
- @REM 详见:
- @REM "批处理之家\ntcmds.chs.chm"
-
- @REM &()[]{}^=;!'+,`~
-
-
- %~
- %~:
- %~:=%
-
- :123
- :
- %a%
- !b!
- "%a%"
- "!b!"
- %%a%%
- ^!b^!
- %a!%b!
- !b%a!%
- %%a%
- ^!b!
- a"%b"%c"
- a"!b"!c"
- "a b " c"
- "a b "" c"
- ""a b "" c"
- ""a b "" c""
- """a b "" c"""
- (()((
- [\s\t ]
-
- :test"^!~:^=!" % ~:=% ^0&((()||><>> `@#$*-_+{{}[]]\;',.?/ %~0 !~0 %空变量% !空变量! %空变量:空值1=空值2% !空变量:空值1=空值2! "
- :test"^!~:^=!" % ~:=% ^0&((()||><>>^^ ^^^ ^^^^ `@#$*-_+{{}[]]\;',.?/ %~0 !~0 %空变量% !"空变量! %"空变量:空值1=空值2% !空变量:空值1=空值2! "
-
- 1:c:\3/%5:\%1 %* 2<1.bug "!a!>" & !b!<"!c!"|!d! "?4*6?%e%"%f%" && (( %!g!% || !%h%! )
-
- 1:c:\3/%5:\%1 %* 2<1.bug "!a!>" & !b^!<"=^^!c!"|!d^! "?4*6?%e%"+%f%" && (( %!g!% || !%h%! )
- 1:c:\3/%5:\%1 %* 2<1.bug !i! "!a!>" & !b^!<"=^^!c!"|!d^! "?4*6?%e%"+%f%" && (( %!g!% || !%h%! )
-
- " 1:c:\3/%5:\%1 %* 2<1.bug !i! "!a!>" & !b^!<"=^^!c!"|!d^! "?4*6?%e%"+%f%" && (( %!g!% || !%h%! ) ;euou%^>1.txt "
-
- "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 去除空格前需要转义特殊字符,因此我没采用这些方法,而使用循环逐一处理每一个字符
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |