예제 #1
0
 /// <summary>
 /// Searches the specified input string for an occurrence of the regular expression supplied in the pattern parameter.
 /// </summary>
 /// <param name="input">The string to search for a match.</param>
 /// <param name="pattern">The regular expression pattern to match.</param>
 /// <param name="group">Group value to return</param>
 /// <returns>Matching string or groups </returns>
 public string Match(string input, string pattern, short group = 0)
 {
     return(StringExt.Match(input, pattern, group));
 }