我正在尝试(以编程方式)查找对特定字符串的引用,即大量VB6文件中的“LOCK_ID”。为了帮助人们直接导航到引用,我还想检索匹配的行号。即:
如果没有打开目录中的每个文件并遍历文件并记录我正在检查搜索词的哪一行,是否有更快/更简单的方法来实现这一目标?
答案 0 :(得分:1)
有很多工具可以做到这一点。我会在编辑时将它们列在编辑中。第一个想到的是TextPad(菜单:搜索/搜索文件)
第二个工具:UEStudio。
这两种都是付费工具。有试验,它们可以快速安装等等。
如果不这样做,你可以安装Cygwin来实现一些Linux风格的grep功能。
Q& A评论
在这种情况下加载文件,将其拆分为“\ n”,保留一个计数器,然后自己进行搜索 - 可能使用RegEx正则表达式。
...这里有一个很酷的LINQ表达式(你只需要where部分): Linq To Text Files
递归地使用目录类来捕获所有文件。
答案 1 :(得分:0)
您可能需要查看FINDSTR命令行实用程序:http://technet.microsoft.com/en-us/library/bb490907.aspx
答案 2 :(得分:0)
UltraEdit32是实现这一目标的更快捷/更简单的方法。 如果有大量的轮子,我认为你不需要重新制造轮子。
答案 3 :(得分:0)
以下是我用来实现所需功能的功能:
private void FindReferences( List<string> output, string searchPath, string searchString )
{
if ( Directory.Exists( searchPath ) )
{
string[] files = Directory.GetFiles( searchPath, "*.*", SearchOption.AllDirectories );
string line;
// Loop through all the files in the specified directory & in all sub-directories
foreach ( string file in files )
{
using ( StreamReader reader = new StreamReader( file ) )
{
int lineNumber = 1;
while ( ( line = reader.ReadLine() ) != null )
{
if ( line.Contains( searchString, StringComparison.OrdinalIgnoreCase ) )
{
output.Add( string.Format( "{0}:{1}", file, lineNumber ) );
}
lineNumber++;
}
}
}
}
}
助手类:
/// <summary>
/// Determines whether the source string contains the specified value.
/// </summary>
/// <param name="source">The String to search.</param>
/// <param name="toCheck">The search criteria.</param>
/// <param name="comparisonOptions">The string comparison options to use.</param>
/// <returns>
/// <c>true</c> if the source contains the specified value; otherwise, <c>false</c>.
/// </returns>
public static bool Contains( this string source, string value, StringComparison comparisonOptions )
{
return source.IndexOf( value, comparisonOptions ) >= 0;
}