1
您可以使用LaTeX讀取文件並搜索關鍵詞嗎?你會如何做到這一點?乳膠:在文件中搜索關鍵字
我目前有讀取文件和計算行數的代碼。我在考慮在每行閱讀過程中,我可以解析特定單詞或標籤的行。這可以做到嗎?
\documentclass{book}
\usepackage{ifthen}
\newcounter{FileLines}
\newboolean{RestFile}
\newcommand{\FileLine}{}
\newread\File
\newcommand{\CountLinesInFile}[2]
{
\setboolean{RestFile}{true}
\setcounter{FileLines}{0}
\openin\File=#1
\whiledo{\boolean{RestFile}}
{
\ReadNextLine{\File}
\ifthenelse{\boolean{RestFile}}{
\stepcounter{FileLines}
}{}
}
\closein\File
}
\newcommand{\ReadNextLine}[1]{
\ifthenelse{\boolean{RestFile}}{
\read#1 to \FileLine
\ifeof#1\setboolean{RestFile}{false}
\else % if last line already is read, EOF appears here
\fi
}{}
}
\begin{document}
\CountLinesInFile{textfile.txt}
Lines in file: \arabic{FileLines}
\end{document}
只是一個想法,爲什麼不只是使用'\ index'來標記關鍵字? –