我已经创建了一个演示应用程序来测试一些正则表达式的性能。我的第三个测试使用选项RightToLeft。
它似乎加快了这个过程!为什么?它做了什么?
这是我的测试应用:
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
private const string IsRequestForDirectoryWithoutTrailingSlashRegex = @"^(?#Path:)(.*/)?(?#LastPart:)(?<!\.asmx|\.aspx/)([^./?#]+?)(?#QueryString:)(\?.*?)(?#Anchor:)?(#.*)?$";
private static string[] Tests = new string[] {
"http://localhost/manager/page.aspx",
"http://localhost/manager/",
"http://localhost/manager",
"http://localhost/manager/?param=value",
"http://localhost/manager/dir?param=value"
};
static void Main(string[] args)
{
Test1();
Test2();
Test3();
Test4();
Console.WriteLine();
Console.ReadLine();
}
public static void Test1()
{
Regex regex = new Regex(IsRequestForDirectoryWithoutTrailingSlashRegex);
DoWork("1", regex);
}
public static void Test2()
{
Regex regex = new Regex(IsRequestForDirectoryWithoutTrailingSlashRegex, RegexOptions.Compiled);
DoWork("2", regex);
}
public static void Test3()
{
Regex regex = new Regex(IsRequestForDirectoryWithoutTrailingSlashRegex, RegexOptions.Compiled | RegexOptions.RightToLeft);
DoWork("3", regex);
}
public static void Test4()
{
Regex regex = new Regex(IsRequestForDirectoryWithoutTrailingSlashRegex, RegexOptions.Compiled | RegexOptions.RightToLeft | RegexOptions.IgnoreCase);
DoWork("4", regex);
}
static void DoWork(string name, Regex regex)
{
Stopwatch sp = new Stopwatch();
sp.Start();
for (int i = 0; i < 100000; i++)
{
foreach (string s in Tests)
{
regex.IsMatch(s);
}
}
foreach (string s in Tests)
{
Console.WriteLine(":" + s + ":" + regex.IsMatch(s).ToString());
}
sp.Stop();
Console.WriteLine("Test " + name + ": " + sp.ElapsedTicks);
}
}
}
答案 0 :(得分:1)
当您尝试匹配您希望在输入字符串末尾找到的模式时,RegexOptions.RightToLeft
会很有用,因为正如其文档所述:搜索从从右到左< / del>从输入字符串中的最后一个字符开始从左到右,正则表达式本身仍然从左到右应用。
您的正则表达式似乎在寻找目录路径的尾部斜杠,所以看起来这种情况符合描述。
虽然你的表达式正在寻找一个尾部斜杠,但是这两个锚点(^
和$
)的存在使我的推理错误,因为正则表达式只能匹配一种可能的方式,无论它从哪里开始。
我将继续寻找这背后的实际原因,但现在我将保留原样。
另一方面,在表达式开头的 .*/
部分之后的表达式的(?#Path:)
部分使用整个输入字符串然后每次递归地返回最后/
,所以当进一步开始搜索时,可能没有太多的回溯。