[ Last edited by yywd on 2008-4-21 at 02:10 PM ]作者: terse 时间: 2008-4-21 13:51 @echo off
setlocal enabledelayedexpansion
for /f "delims=" %%i in (1.txt) do (
set str=%%i
set str=!str:*/=!
call:lp !str!
)
pause
:lp
if "!str:~0,1!"=="/" echo http:/%~1作者: yywd 时间: 2008-4-21 14:11 可行 谢谢您