我發(fā)現(xiàn)兩種方法,其實(shí)原理差不多
假如
a.txt中的內(nèi)容是下面的
復(fù)制代碼 代碼如下:
ASP中_DateDiff_函數(shù)詳解.htm
ASP中_Split_函數(shù)的實(shí)例.htm
輕松實(shí)現(xiàn)將上傳圖片到數(shù)據(jù)庫.htm
遠(yuǎn)程獲取內(nèi)容,并將內(nèi)容存在本地腦上.htm
防止從外部提交數(shù)據(jù)的方法.htm
用下面的批處理
復(fù)制代碼 代碼如下:
echo off >1.txt
for /f %%i in (book.txt) do call :dxy %%i
goto :eof
:dxy
set var=%1
set fname=%~n1
echo ^a href='%var%' target='_blank'^>%fname%^/a^> >>1.txt
cls
goto :eof
echo off >1.txt作用是清空1.txt的內(nèi)容,防止多次運(yùn)行,內(nèi)容會(huì)重復(fù)
第二種問題,也是我本來不知道$~n1這個(gè)功能
a.txt內(nèi)容中的所有.htm都替換為空
復(fù)制代碼 代碼如下:
ASP中_DateDiff_函數(shù)詳解
ASP中_Split_函數(shù)的實(shí)例
輕松實(shí)現(xiàn)將上傳圖片到數(shù)據(jù)庫
遠(yuǎn)程獲取內(nèi)容,并將內(nèi)容存在本地腦上
防止從外部提交數(shù)據(jù)的方法
實(shí)現(xiàn)方法:
復(fù)制代碼 代碼如下:
echo off >1.txt
for /f %%i in (book.txt) do call :dxy %%i
goto :eof
:dxy
set var=%1
echo ^a href='%var%.htm' target='_blank'^>%var%^/a^> >>1.txt
cls
goto :eof
不懂可以看下一篇我把用到的東西,都整理下,方便我們大家學(xué)習(xí)