// 摘要:指示 System.Text.RegularExpressions.Regex 构造函数中指定的正则表达式在输入字符串中是否找到匹配项。
public
bool IsMatch(string input);
// 摘要:指示 System.Text.RegularExpressions.Regex 构造函数中指定的正则表达式从输入字符串的指定起始位置开始是否找到匹配项。
public
bool IsMatch(string input, int startat);
// 摘要:指示正则表达式使用 pattern 参数中指定的正则表达式是否在输入字符串中找到匹配项。
public
static
bool IsMatch(string input, string pattern);
// 摘要:在指定的输入字符串中搜索 System.Text.RegularExpressions.Regex 构造函数中指定的正则表达式匹配项。
public
Match Match(string input);
// 摘要:从指定的输入字符串起始位置开始在输入字符串中搜索正则表达式匹配项。
public
Match Match(string input, int startat);
// 摘要:在指定的输入字符串中搜索 pattern 参数中提供的正则表达式的匹配项。
// 返回结果:一个正则表达式 System.Text.RegularExpressions.Match 对象。
public
static
Match Match(string input, string pattern);
//
// 摘要:从指定的输入字符串起始位置开始在输入字符串中搜索具有指定输入字符串长度的正则表达式匹配项。
public
Match Match(string input, int beginning, int length);
//此处也同上,具有一类类似方法
public
MatchCollection Matches(string input);
//在指定的输入字符串内,使用指定的替换字符串替换与某个正则表达式模式匹配的所有字符串。
public
string Replace(string input, string replacement);
//在指定的输入字符串内,使用 System.Text.RegularExpressions.MatchEvaluator 委托返回的字符串替换与某个正则表达式模式匹配的字符串(其数目为指定的最大数目)。
public
string Replace(string input, MatchEvaluator evaluator, int count);
public
static
string Replace(string input, string pattern, MatchEvaluator evaluator);
// 摘要:
// 在由 System.Text.RegularExpressions.Regex 构造函数中指定的正则表达式定义的位置,将指定的输入字符串拆分指定的最大次数。
public
string[] Split(string input, int count);
|
请发表评论