使用通配符搜索不同的字符串,例如搜索test0?
(?
后面有空格)。搜索产生的字符串是:
test01
test02
test03
(and so on)
替换文字应该是例如:
test0? -
test0? -
上面的通配符代表1,2或3 ...
因此,替换字符串应为:
test01 -
test02 -
test03 -
string pattern = WildcardToRegex(originalText);
fileName = Regex.Replace(originalText, pattern, replacementText);
public string WildcardToRegex(string pattern)
{
return "^" + System.Text.RegularExpressions.Regex.Escape(pattern).
Replace("\\*", ".*").Replace("\\?", ".") + "$";
}
问题是使用原始字符和添加的字符保存新字符串。我可以搜索字符串并使用一些字符串操作保存原始文件,但这似乎是太多的开销。必须有一个更简单的方法。
感谢您的任何意见。
编辑:
使用通配符搜索字符串?
可能的字符串是:
test01 someText
test02 someotherText
test03 moreText
使用Regex,搜索字符串模式为:
TEST0? -
因此,每个字符串应该读取:
test01 - someText
test02 - someotherText
test03 - moreText
如何保留被正则表达式通配符'?'
替换的字符正如我的代码所示,它将作为测试出来? - someText
那是错的。
感谢。
编辑编号2
首先,感谢大家的回答和指导。
它确实有所帮助并引导我走上正轨,现在我可以更好地提出确切的问题:
它与替代有关。
在正则表达式后插入文本。
我给出的示例字符串,可能并不总是采用该格式。我一直在寻找替代,但似乎无法使语法正确。我正在使用VS 2008。
还有其他建议吗?
由于
答案 0 :(得分:2)
如果你想用“test0? - ”替换“test0?”,你会写:
string bar = Regex.Replace(foo, "^test0. ", "$0- ");
此处的关键是$0
substitution,其中包含匹配的文字。
因此,如果我正确理解您的问题,您只需要replacementText
为"$0- "
。
答案 1 :(得分:0)
如果我正确理解了这个问题,你不能只使用匹配吗?
//Convert pattern to regex (I'm assuming this can be done with your "originalText")
Regex regex = pattern;
//For each match, replace the found pattern with the original value + " -"
foreach (Match m in regex.Matches)
{
RegEx.Replace(pattern, m.Groups[0].Value + " -");
}
答案 2 :(得分:0)
所以我不是100%清楚你正在做什么,但我会试一试。
我假设您要使用“文件通配符”(?
/ *
)并搜索一组匹配的值(同时保留使用占位符存储的值)本身),然后用新值替换它(重新插入这些占位符)。考虑到这一点,并且可能有很多矫枉过正(因为你的要求有点奇怪),这就是我想出的:
// Helper function to turn the file search pattern in to a
// regex pattern.
private Regex BuildRegexFromPattern(String input)
{
String pattern = String.Concat(input.ToCharArray().Select(i => {
String c = i.ToString();
return c == "?" ? "(.)"
: c == "*" ? "(.*)"
: c == " " ? "\\s"
: Regex.Escape(c);
}));
return new Regex(pattern);
}
// perform the actual replacement
private IEnumerable<String> ReplaceUsingPattern(IEnumerable<String> items, String searchPattern, String replacementPattern)
{
Regex searchRe = BuildRegexFromPattern(searchPattern);
return items.Where(s => searchRe.IsMatch(s)).Select (s => {
Match match = searchRe.Match(s);
Int32 m = 1;
return String.Concat(replacementPattern.ToCharArray().Select(i => {
String c = i.ToString();
if (m > match.Groups.Count)
{
throw new InvalidOperationException("Replacement placeholders exceeds locator placeholders.");
}
return c == "?" ? match.Groups[m++].Value
: c == "*" ? match.Groups[m++].Value
: c;
}));
});
}
然后,在实践中:
String[] samples = new String[]{
"foo01", "foo02 ", "foo 03",
"bar0?", "bar0? ", "bar03 -",
"test01 ", "test02 ", "test03 "
};
String searchTemplate = "test0? ";
String replaceTemplate = "test0? -";
var results = ReplaceUsingPattern(samples, searchTemplate, replaceTemplate);
从上面的samples
列表中,我发现:
matched: & modified to:
test01 test01 -
test02 test02 -
test03 test03 -
但是,如果确实想要保存头痛,那么您应该使用替换引用。没有必要重新发明轮子。以上,有替换,可以改为:
Regex searchRe = new Regex("test0(.*)\s");
samples.Select(x => searchRe.Replace(s, "test0$1-"));
答案 3 :(得分:0)
您可以捕获匹配字符串中的任何一部分并放置在替换语句中的任何位置,使用符号$后跟catched元素的索引(从索引1开始)。
你可以用括号和#34;()&#34;
来捕捉元素示例:
如果我有几个字符串与testXYZ,XYZ是一个3位数字,我需要用testZYX替换它,反转3位数,我会这样做:
string result = Regex.Replace(source, "test([0-9])([0-9])([0-9])", "test$3$2$1");
所以,在你的情况下,可以做到:
string result = Regex.Replace(source, "test0([0-9]) ", "test0$1 - ");