我有一个像
http://www.somesite.com/$(someKey).php
我有一个包含这些键的字典,我需要使用正则表达式将$(*)
字典中的值替换为用该键标记的值。
我怎样才能做到这一点?
您可以使用Regex.Replace 方法。尝试这个:
class Program
{
static void Main(string[] args)
{
var dict = new Dictionary<string, string>();
dict.Add("someKey1", "MyPage1");
dict.Add("someKey2", "MyPage2");
var input = "http://www.somesite.com/$(someKey2).php";
var output = Regex.Replace(input, @"\$\((.*?)\)", m =>
{
return dict[m.Groups[1].Value];
});
}
}
可能是这样的:
url = Regex.Replace(url , @"\$\(([^)]+)\)", delegate(Match m){ return dict[m.Groups[1]]; });