我创建了一个小函数来捕获字符串之间的字符串。
public static string[] _StringBetween(string sString, string sStart, string sEnd)
{
if (sStart == "" && sEnd == "")
{
return null;
}
string sPattern = sStart + "(.*?)" + sEnd;
MatchCollection rgx = Regex.Matches(sString, sPattern);
if (rgx.Count < 1)
{
return null;
}
string[] matches = new string[rgx.Count];
for (int i = 0; i < matches.Length; i++)
{
matches[i] = rgx[i].ToString();
//MessageBox.Show(matches[i]);
}
return matches;
}
但是如果我这样调用我的函数:_StringBetween("[18][20][3][5][500][60]", "[", "]");
它会失败。如果我更改了这一行string sPattern = "\\" + sStart + "(.*?)" + "\\" + sEnd;
但是我不能,因为我不知道这个角色是一个括号还是一个单词。
很抱歉,如果这是一个愚蠢的问题,但我找不到类似的搜索。
答案 0 :(得分:1)
如果我改变了这个字符串
sPattern = "\\" + sStart + "(.*?)" + "\\" + sEnd;
,那就是一种方式。但我不能,因为我不知道这个字符是一个括号还是一个单词。
您可以通过调用Regex.Escape
来转义所有元字符:
string sPattern = Regex.Escape(sStart) + "(.*?)" + Regex.Escape(sEnd);
这会导致sStart
和sEnd
的内容按字面解释。