コード例 #1
0
 /// <summary>
 /// Runs regular expression on the input (see: <see cref="regex_FieldAndIOMatch"/>)
 /// </summary>
 /// <remarks>
 /// though not support yet, the regular expression is designed to support
 /// ‘(Table|FIeld|Directory|File)\w*’ input
 /// </remarks>
 /// <param name="input">the text sent to the regular expression query.</param>
 /// <returns>
 /// The regular expression matches.
 /// </returns>
 static public MatchCollection ListTagsAndFiles(string input)
 {
     return(ParseUtil.Match(regex_FieldAndIOMatch, input));
 }
コード例 #2
0
 static public MatchCollection ListTags(string input)
 {
     return(ParseUtil.Match(regex_fieldMatch, input));
 }