首页 > 代码库 > BAT返回字符在字符串中的首个位置及最后一个位置
BAT返回字符在字符串中的首个位置及最后一个位置
rem @echo off SETLOCAL ENABLEDELAYEDEXPANSION set k=speed_dao_mmr_20141016_300008588738_2200125875 call :PosLastChar %k% _ aa echo %aa% pause goto :eof rem :poschar str tag Res :PosChar set SubStr= set F=0 set TmpVar=%1 set %3=-1 :pos_begin set SubStr=!TmpVar:~%F%,1! if not defined substr goto :post_end if "%SubStr%"=="%2" ( set %3=%f% goto :post_end ) else ( set /a f=%f%+1 goto :pos_begin ) :post_end goto :eof rem :PosLastChar str tag Res :PosLastChar set SubStr= set F=0 set TmpVar=%1 set %3=-1 :PosLastCharBegin set SubStr=!TmpVar:~%F%,1! if not defined substr goto :PosLastCharEnd if "%SubStr%"=="%2" ( set %3=%f% set /a f=%f%+1 goto :PosLastCharBegin ) else ( set /a f=%f%+1 goto :PosLastCharBegin ) :PosLastCharEnd goto :eof
本文出自 “RZL_01的博客” 博客,请务必保留此出处http://rzl01.blog.51cto.com/3004337/1582872
BAT返回字符在字符串中的首个位置及最后一个位置
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。